@neovate/code 0.23.0 → 0.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.mjs +718 -690
- package/dist/index.d.ts +98 -1
- package/dist/index.mjs +714 -686
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neovate/code",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -21,17 +21,18 @@
|
|
|
21
21
|
"build:dts": "npm run build:type && api-extractor run --local --verbose",
|
|
22
22
|
"build:post": "bun scripts/post-build.ts",
|
|
23
23
|
"build": "rm -rf dist dist-dts && npm run build:cli && npm run build:index && npm run build:dts && npm run build:post",
|
|
24
|
-
"ci": "npm run typecheck && npm run format && npm run test",
|
|
24
|
+
"ci": "npm run typecheck && npm run format && npm run test && npm run build && npm run test:cli",
|
|
25
25
|
"detect-unused": "bun scripts/detect-unused.ts",
|
|
26
26
|
"extension:build": "pnpm --filter neovate-assistant build",
|
|
27
27
|
"extension:dev": "pnpm --filter neovate-assistant dev",
|
|
28
28
|
"extension:publish": "cd vscode-extension && npm run publish && cd ..",
|
|
29
29
|
"extension:package": "pnpm --filter neovate-assistant package",
|
|
30
30
|
"extension:bump": "pnpm --filter neovate-assistant bump",
|
|
31
|
-
"release": "npm run ci &&
|
|
32
|
-
"release:minor": "npm run ci &&
|
|
33
|
-
"release:major": "npm run ci &&
|
|
31
|
+
"release": "npm run ci && bun scripts/release.ts",
|
|
32
|
+
"release:minor": "npm run ci && bun scripts/release.ts --minor",
|
|
33
|
+
"release:major": "npm run ci && bun scripts/release.ts --major",
|
|
34
34
|
"test": "vitest run",
|
|
35
|
+
"test:cli": "bun scripts/cli-integration-test.ts",
|
|
35
36
|
"test:watch": "vitest",
|
|
36
37
|
"test:e2e": "bun scripts/e2e.ts",
|
|
37
38
|
"typecheck": "tsc --noEmit",
|