@sapphire/snowflake 3.5.4-next.caf83f1f.0 → 3.5.4-next.cd7e6b59
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/README.md +1 -1
- package/package.json +13 -11
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
- [Snowflake with Discord epoch constant](#snowflake-with-discord-epoch-constant-1)
|
|
29
29
|
- [Snowflake with Twitter epoch constant](#snowflake-with-twitter-epoch-constant-1)
|
|
30
30
|
- [Buy us some doughnuts](#buy-us-some-doughnuts)
|
|
31
|
-
- [Contributors
|
|
31
|
+
- [Contributors](#contributors)
|
|
32
32
|
|
|
33
33
|
## Description
|
|
34
34
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sapphire/snowflake",
|
|
3
|
-
"version": "3.5.4-next.
|
|
3
|
+
"version": "3.5.4-next.cd7e6b59",
|
|
4
4
|
"description": "Deconstructs and generates snowflake IDs using BigInts",
|
|
5
5
|
"author": "@sapphire",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,12 +25,13 @@
|
|
|
25
25
|
"scripts": {
|
|
26
26
|
"test": "vitest run",
|
|
27
27
|
"lint": "eslint src tests --ext ts --fix -c ../../.eslintrc",
|
|
28
|
-
"build": "tsup && yarn build:rename-cjs-index",
|
|
29
|
-
"build:rename-cjs-index": "
|
|
28
|
+
"build": "yarn gen-index && tsup && yarn build:rename-cjs-index",
|
|
29
|
+
"build:rename-cjs-index": "tsx ../../scripts/rename-cjs-index.cts",
|
|
30
30
|
"docs": "typedoc-json-parser",
|
|
31
31
|
"prepack": "yarn build",
|
|
32
32
|
"bump": "cliff-jumper",
|
|
33
|
-
"check-update": "cliff-jumper --dry-run"
|
|
33
|
+
"check-update": "cliff-jumper --dry-run",
|
|
34
|
+
"gen-index": "tsx ../../scripts/gen-index.cts -w snowflake"
|
|
34
35
|
},
|
|
35
36
|
"repository": {
|
|
36
37
|
"type": "git",
|
|
@@ -61,12 +62,13 @@
|
|
|
61
62
|
"access": "public"
|
|
62
63
|
},
|
|
63
64
|
"devDependencies": {
|
|
64
|
-
"@favware/cliff-jumper": "^
|
|
65
|
-
"@vitest/coverage-v8": "^1.
|
|
66
|
-
"tsup": "^8.0.
|
|
67
|
-
"
|
|
68
|
-
"typedoc
|
|
69
|
-
"
|
|
70
|
-
"
|
|
65
|
+
"@favware/cliff-jumper": "^4.0.2",
|
|
66
|
+
"@vitest/coverage-v8": "^1.6.0",
|
|
67
|
+
"tsup": "^8.0.2",
|
|
68
|
+
"tsx": "^4.11.0",
|
|
69
|
+
"typedoc": "^0.25.13",
|
|
70
|
+
"typedoc-json-parser": "^10.0.0",
|
|
71
|
+
"typescript": "^5.4.5",
|
|
72
|
+
"vitest": "^1.6.0"
|
|
71
73
|
}
|
|
72
74
|
}
|