Skip to content

Commit

Permalink
fix: switch from tsm to esmo to avoid broken --help. see #22 (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikg authored Feb 3, 2022
1 parent 2fb4840 commit 42b1ae6
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Workflows are sheduled to run automatically every Monday, Wednesday and Friday
- run `pnpm i`
- run `pnpm test` to run all suites
- or `pnpm test <suitename>` to select a suite
- or `node ecosystem-ci.js`
- or `esmo ecosystem-ci.ts`

You can pass `--tag v2.8.0-beta.1`, `--branch somebranch` or `--commit abcd1234` arg to select a specific vite version.

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"lint:fix": "pnpm run lint -- --fix",
"format": "prettier --ignore-path .gitignore --check .",
"format:fix": "pnpm run format -- --write",
"test:self": "tsm ecosystem-ci.ts _selftest",
"test": "tsm ecosystem-ci.ts",
"bisect": "tsm ecosystem-ci.ts bisect"
"test:self": "esmo ecosystem-ci.ts _selftest",
"test": "esmo ecosystem-ci.ts",
"bisect": "esmo ecosystem-ci.ts bisect"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
Expand Down Expand Up @@ -48,10 +48,10 @@
"eslint": "^8.8.0",
"eslint-define-config": "^1.2.3",
"eslint-plugin-node": "^11.1.0",
"esno": "^0.14.0",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"simple-git-hooks": "^2.7.0",
"tsm": "^2.2.1",
"typescript": "^4.5.5"
}
}
72 changes: 59 additions & 13 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 42b1ae6

Please sign in to comment.