Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c47d56d

Browse files
committedJun 20, 2025·
attw
1 parent ddf06fd commit c47d56d

File tree

2 files changed

+640
-3
lines changed

2 files changed

+640
-3
lines changed
 

‎package-lock.json

Lines changed: 636 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
"typecheck": "tsc --noEmit",
3030
"prepack": "node node10stubs.mjs",
3131
"postpack": "node node10stubs.mjs --cleanup",
32-
"alpha": "rm -rf dist && npm run build && npm run test && npm version prerelease --preid alpha && npm publish --tag alpha && git push --tags",
33-
"release": "rm -rf dist && npm run build && npm run test && npm version patch && npm publish && git push --tags",
34-
"test": "vitest run --typecheck --config ./src/vitest.config.ts && npm run lint && npm run typecheck && npm run attw",
32+
"alpha": "rm -rf dist && npm run build && run-p test lint typecheck attw && npm version prerelease --preid alpha && npm publish --tag alpha && git push --tags",
33+
"release": "rm -rf dist && npm run build && run-p test lint typecheck attw && npm version patch && npm publish && git push --tags",
34+
"test": "vitest run --typecheck --config ./src/vitest.config.ts",
3535
"test:watch": "vitest --typecheck --config ./src/vitest.config.ts",
3636
"test:debug": "vitest --inspect-brk --no-file-parallelism --config ./src/vitest.config.ts",
3737
"test:coverage": "vitest run --coverage --coverage.reporter=text",
@@ -103,6 +103,7 @@
103103
}
104104
},
105105
"devDependencies": {
106+
"@arethetypeswrong/cli": "^0.17.4",
106107
"@edge-runtime/vm": "^5.0.0",
107108
"@eslint/js": "^9.9.1",
108109
"@types/node": "^18.19.86",

0 commit comments

Comments
 (0)
Please sign in to comment.