@ota-meshi/ast-token-store 0.0.0 → 0.1.0

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.
Files changed (2) hide show
  1. package/lib/index.mjs +1 -1
  2. package/package.json +5 -5
package/lib/index.mjs CHANGED
@@ -404,7 +404,7 @@ var TokenStore = class {
404
404
  //#endregion
405
405
  //#region package.json
406
406
  var name$1 = "@ota-meshi/ast-token-store";
407
- var version$1 = "0.0.0";
407
+ var version$1 = "0.1.0";
408
408
 
409
409
  //#endregion
410
410
  //#region src/meta.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ota-meshi/ast-token-store",
3
- "version": "0.0.0",
3
+ "version": "0.1.0",
4
4
  "description": "A class library that provides an API similar to ESLint's token store",
5
5
  "type": "module",
6
6
  "exports": {
@@ -22,15 +22,16 @@
22
22
  "lint": "npm run lint:js && npm run lint:ts",
23
23
  "lint:js": "eslint .",
24
24
  "lint:ts": "npm run tsc",
25
- "tsc": "tsc --project tsconfig.build.json",
25
+ "tsc": "tsc",
26
26
  "eslint-fix": "eslint . --fix",
27
27
  "test": "npm run mocha -- \"tests/src/**/*.ts\" --reporter=dot --timeout=60000",
28
28
  "test:debug": "node --experimental-strip-types --experimental-transform-types ./node_modules/mocha/bin/mocha.js \"tests/src/**/*.ts\" --reporter=dot --timeout=60000",
29
29
  "test:cover": "c8 --reporter=lcov --reporter=text npm run test:debug",
30
30
  "ts": "node --import=tsx",
31
31
  "mocha": "npm run ts -- ./node_modules/mocha/bin/mocha.js",
32
- "generate:version": "env-cmd -e version -- npm run update && npm run lint -- --fix",
33
- "changeset:version": "env-cmd -e version -- changeset version && npm run generate:version && git add --all",
32
+ "update": "node --experimental-strip-types --experimental-transform-types ./tools/update.ts",
33
+ "generate:version": "npm run update && npm run lint -- --fix",
34
+ "changeset:version": "changeset version && npm run generate:version && git add --all",
34
35
  "changeset:publish": "npm run build && changeset publish"
35
36
  },
36
37
  "repository": {
@@ -73,7 +74,6 @@
73
74
  "@types/semver": "^7.5.8",
74
75
  "assert": "^2.1.0",
75
76
  "c8": "^10.1.3",
76
- "env-cmd": "^11.0.0",
77
77
  "eslint": "^9.34.0",
78
78
  "eslint-compat-utils": "^0.6.4",
79
79
  "eslint-config-prettier": "^10.1.1",