@tabnas/debug 0.3.3 → 0.3.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.
package/dist/debug.d.ts CHANGED
@@ -58,5 +58,5 @@ export type DebugModel = {
58
58
  abnf: string;
59
59
  };
60
60
  declare const Debug: Plugin;
61
- declare const VERSION = "0.3.3";
61
+ declare const VERSION = "0.3.5";
62
62
  export { VERSION, Debug };
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.3';
900
+ const VERSION = '0.3.5';
901
901
  exports.VERSION = VERSION;
902
902
  //# sourceMappingURL=debug.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tabnas/debug",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "main": "dist/debug.js",
5
5
  "type": "commonjs",
6
6
  "types": "dist/debug.d.ts",
@@ -19,6 +19,7 @@
19
19
  "directory": "ts"
20
20
  },
21
21
  "scripts": {
22
+ "pretest": "npm run build",
22
23
  "test": "node --enable-source-maps --test test/**/*.test.js",
23
24
  "watch": "tsc --build src -w",
24
25
  "build": "tsc --build src",