@tabnas/directive 0.5.2 → 0.5.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/dist/directive.d.ts +1 -1
- package/dist/directive.js +1 -1
- package/package.json +4 -3
- package/src/directive.ts +1 -1
package/dist/directive.d.ts
CHANGED
package/dist/directive.js
CHANGED
|
@@ -163,6 +163,6 @@ Directive.defaults = {
|
|
|
163
163
|
// VERSION is this package's version. It MUST equal package.json "version":
|
|
164
164
|
// the release orchestrator rewrites both, and the version test fails the
|
|
165
165
|
// build if they drift. Mirrors `const VERSION` in go/directive.go.
|
|
166
|
-
const VERSION = '0.5.
|
|
166
|
+
const VERSION = '0.5.4';
|
|
167
167
|
exports.VERSION = VERSION;
|
|
168
168
|
//# sourceMappingURL=directive.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabnas/directive",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "Directive syntax plugin for the tabnas JSON parser.",
|
|
5
5
|
"main": "dist/directive.js",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"build": "tsc --build src test",
|
|
26
26
|
"clean": "rm -rf dist dist-test node_modules yarn.lock package-lock.json",
|
|
27
27
|
"reset": "npm run clean && npm i && npm run build && npm test",
|
|
28
|
-
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push
|
|
28
|
+
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: ts/v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag ts/v$REPO_VERSION && git push origin ts/v$REPO_VERSION;",
|
|
29
29
|
"repo-publish": "npm run clean && npm i && npm run repo-publish-quick",
|
|
30
|
-
"repo-publish-quick": "npm run build && npm run test && npm run repo-tag
|
|
30
|
+
"repo-publish-quick": "npm run build && npm run test && npm run repo-tag",
|
|
31
31
|
"repo-stage": "npm run clean && npm i && npm run repo-stage-quick",
|
|
32
32
|
"repo-stage-quick": "npm run build && npm run test && npm stage publish",
|
|
33
33
|
"repo-stage-list": "npm stage list",
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"@tabnas/debug": "*",
|
|
44
44
|
"@tabnas/parser": "*",
|
|
45
45
|
"@tabnas/railroad": "*",
|
|
46
|
+
"@tabnas/support": "*",
|
|
46
47
|
"@types/node": "25.6.0",
|
|
47
48
|
"typescript": "6.0.3"
|
|
48
49
|
},
|
package/src/directive.ts
CHANGED
|
@@ -224,4 +224,4 @@ export type { DirectiveOptions }
|
|
|
224
224
|
// VERSION is this package's version. It MUST equal package.json "version":
|
|
225
225
|
// the release orchestrator rewrites both, and the version test fails the
|
|
226
226
|
// build if they drift. Mirrors `const VERSION` in go/directive.go.
|
|
227
|
-
const VERSION = '0.5.
|
|
227
|
+
const VERSION = '0.5.4'
|