@sapphire/bitfield 1.2.3-next.caf83f1f.0 → 1.2.3-next.d4ebe803.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/README.md +1 -1
  2. package/package.json +10 -9
package/README.md CHANGED
@@ -27,7 +27,7 @@
27
27
  - [Getting the symmetric difference between different fields](#getting-the-symmetric-difference-between-different-fields)
28
28
  - [Formatting a field](#formatting-a-field)
29
29
  - [Buy us some doughnuts](#buy-us-some-doughnuts)
30
- - [Contributors](#contributors-)
30
+ - [Contributors](#contributors)
31
31
 
32
32
  ## Features
33
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapphire/bitfield",
3
- "version": "1.2.3-next.caf83f1f.0",
3
+ "version": "1.2.3-next.d4ebe803.0",
4
4
  "description": "A bitfield utility library for JavaScript.",
5
5
  "author": "@sapphire",
6
6
  "license": "MIT",
@@ -26,7 +26,7 @@
26
26
  "test": "vitest run",
27
27
  "lint": "eslint src tests --ext ts --fix -c ../../.eslintrc",
28
28
  "build": "tsup && yarn build:rename-cjs-index",
29
- "build:rename-cjs-index": "node ../../scripts/rename-cjs-index.mjs",
29
+ "build:rename-cjs-index": "tsx --tsconfig ../../scripts/tsconfig.json ../../scripts/rename-cjs-index.cts",
30
30
  "docs": "typedoc-json-parser",
31
31
  "prepack": "yarn build",
32
32
  "bump": "cliff-jumper",
@@ -62,12 +62,13 @@
62
62
  "access": "public"
63
63
  },
64
64
  "devDependencies": {
65
- "@favware/cliff-jumper": "^2.2.3",
66
- "@vitest/coverage-v8": "^1.2.2",
67
- "tsup": "^8.0.1",
68
- "typedoc": "^0.25.7",
69
- "typedoc-json-parser": "^9.0.1",
70
- "typescript": "^5.3.3",
71
- "vitest": "^1.2.2"
65
+ "@favware/cliff-jumper": "^3.0.3",
66
+ "@vitest/coverage-v8": "^1.6.0",
67
+ "tsup": "^8.0.2",
68
+ "tsx": "^4.10.5",
69
+ "typedoc": "^0.25.13",
70
+ "typedoc-json-parser": "^10.0.0",
71
+ "typescript": "^5.4.5",
72
+ "vitest": "^1.6.0"
72
73
  }
73
74
  }