@tabnas/debug 0.3.2 → 0.3.3
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/debug.d.ts +1 -1
- package/dist/debug.js +1 -1
- package/package.json +5 -4
package/dist/debug.d.ts
CHANGED
package/dist/debug.js
CHANGED
|
@@ -897,6 +897,6 @@ Debug.defaults = DEFAULTS;
|
|
|
897
897
|
// VERSION is this package's version. It MUST equal package.json "version":
|
|
898
898
|
// the release orchestrator rewrites both, and the version test fails the
|
|
899
899
|
// build if they drift. Mirrors `const VERSION` in go/debug.go.
|
|
900
|
-
const VERSION = '0.3.
|
|
900
|
+
const VERSION = '0.3.3';
|
|
901
901
|
exports.VERSION = VERSION;
|
|
902
902
|
//# sourceMappingURL=debug.js.map
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabnas/debug",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"main": "dist/debug.js",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"types": "dist/debug.d.ts",
|
|
7
7
|
"description": "Debug plugin for the tabnas parser — tracing helpers and a describe() method.",
|
|
8
|
-
"homepage": "https://github.com/
|
|
8
|
+
"homepage": "https://github.com/tabnas/debug",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"tabnas",
|
|
11
11
|
"debug",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"build": "tsc --build src",
|
|
25
25
|
"clean": "rm -rf node_modules dist dist-test yarn.lock package-lock.json",
|
|
26
26
|
"reset": "npm run clean && npm i && npm run build && npm test",
|
|
27
|
-
"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
|
|
27
|
+
"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;",
|
|
28
28
|
"repo-publish": "npm run clean && npm i && npm run repo-publish-quick",
|
|
29
|
-
"repo-publish-quick": "npm run build && npm run test && npm run repo-tag
|
|
29
|
+
"repo-publish-quick": "npm run build && npm run test && npm run repo-tag",
|
|
30
30
|
"repo-stage": "npm run clean && npm i && npm run repo-stage-quick",
|
|
31
31
|
"repo-stage-quick": "npm run build && npm run test && npm stage publish",
|
|
32
32
|
"repo-stage-list": "npm stage list",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"@tabnas/abnf": "*",
|
|
48
48
|
"@tabnas/parser": "*",
|
|
49
49
|
"@tabnas/railroad": "*",
|
|
50
|
+
"@tabnas/support": "*",
|
|
50
51
|
"@types/node": "25.6.0",
|
|
51
52
|
"typescript": "6.0.3"
|
|
52
53
|
},
|