pi-x-ide 1.0.2 → 1.0.4
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/README.md +1 -1
- package/README.zh.md +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ Common commands:
|
|
|
43
43
|
|
|
44
44
|
```bash
|
|
45
45
|
pnpm package:vscode
|
|
46
|
-
code --install-extension
|
|
46
|
+
code --install-extension './vscode'-0.1.0.vsix
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
The extension installed this way runs in all VS Code windows, independent of the F5 Extension Host.
|
package/README.zh.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-x-ide",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Pi extension package for IDE selection context integration.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -48,16 +48,16 @@
|
|
|
48
48
|
]
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
|
-
"build": "tsc -p tsconfig.json && pnpm --filter
|
|
52
|
-
"typecheck": "tsc -p tsconfig.json --noEmit && pnpm --filter
|
|
51
|
+
"build": "tsc -p tsconfig.json && pnpm --filter './vscode' compile",
|
|
52
|
+
"typecheck": "tsc -p tsconfig.json --noEmit && pnpm --filter './vscode' typecheck",
|
|
53
53
|
"test": "pnpm build && node --test dist/test/*.test.js",
|
|
54
54
|
"lint": "eslint .",
|
|
55
55
|
"lint:fix": "eslint . --fix",
|
|
56
56
|
"format": "prettier --write .",
|
|
57
57
|
"format:check": "prettier --check .",
|
|
58
|
-
"compile:vscode": "pnpm --filter
|
|
59
|
-
"sync:vscode-assets": "pnpm --filter
|
|
60
|
-
"package:vscode": "pnpm --filter
|
|
58
|
+
"compile:vscode": "pnpm --filter './vscode' compile",
|
|
59
|
+
"sync:vscode-assets": "pnpm --filter './vscode' sync:assets",
|
|
60
|
+
"package:vscode": "pnpm --filter './vscode' package",
|
|
61
61
|
"vsix": "pnpm package:vscode"
|
|
62
62
|
}
|
|
63
63
|
}
|