@aster-cloud/aster-lang-ts 0.0.19 → 0.0.21
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/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aster-cloud/aster-lang-ts",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21",
|
|
4
4
|
"description": "Aster CNL (Controlled Natural Language) TypeScript Compiler - Lexer, Parser, AST, Core IR, Type Checker",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/src/index.js",
|
|
@@ -174,6 +174,9 @@
|
|
|
174
174
|
"typecheck": "tsc --noEmit",
|
|
175
175
|
"lsp": "node dist/src/lsp/server.js --stdio",
|
|
176
176
|
"repl": "node dist/scripts/repl.js",
|
|
177
|
-
"docs:api": "typedoc --options typedoc.json"
|
|
177
|
+
"docs:api": "typedoc --options typedoc.json",
|
|
178
|
+
"release:patch": "npm version patch && git push && git push --tags",
|
|
179
|
+
"release:minor": "npm version minor && git push && git push --tags",
|
|
180
|
+
"release:major": "npm version major && git push && git push --tags"
|
|
178
181
|
}
|
|
179
182
|
}
|