@tabnas/directive 0.5.3 → 0.5.5

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.
@@ -21,4 +21,4 @@ type DirectiveOptions = {
21
21
  declare const Directive: Plugin;
22
22
  export { VERSION, Directive };
23
23
  export type { DirectiveOptions };
24
- declare const VERSION = "0.5.3";
24
+ declare const VERSION = "0.5.5";
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.3';
166
+ const VERSION = '0.5.5';
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",
3
+ "version": "0.5.5",
4
4
  "description": "Directive syntax plugin for the tabnas JSON parser.",
5
5
  "main": "dist/directive.js",
6
6
  "type": "commonjs",
@@ -19,7 +19,9 @@
19
19
  "directory": "ts"
20
20
  },
21
21
  "scripts": {
22
+ "pretest": "npm run build",
22
23
  "test": "node --enable-source-maps --test \"dist-test/*.test.js\"",
24
+ "pretest-some": "npm run build",
23
25
  "test-some": "node --enable-source-maps --test-name-pattern=\"$npm_config_pattern\" --test \"dist-test/*.test.js\"",
24
26
  "watch": "tsc --build src test -w",
25
27
  "build": "tsc --build src test",
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.3'
227
+ const VERSION = '0.5.5'