immutable-builtins 1.0.0 → 1.0.1

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 (1) hide show
  1. package/package.json +8 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "immutable-builtins",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Dependency-free collection of immutable replacements for JavaScript builtins",
5
5
  "keywords": [
6
6
  "immutable",
@@ -22,7 +22,9 @@
22
22
  "license": "MIT",
23
23
  "private": false,
24
24
  "type": "module",
25
- "files": ["dist"],
25
+ "files": [
26
+ "dist"
27
+ ],
26
28
  "types": "./dist/esm/index.d.ts",
27
29
  "module": "./dist/esm/index.js",
28
30
  "main": "./dist/cjs/index.js",
@@ -47,8 +49,11 @@
47
49
  "build:cjs": "tsc --module commonjs --outDir dist/cjs",
48
50
  "postbuild:esm": "yarn exec tsc-esm-fix --target='target/es6'",
49
51
  "postbuild:cjs": "echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
52
+ "lint": "eslint .",
50
53
  "test": "jest",
51
- "lint": "eslint ."
54
+ "ci": "yarn build && yarn lint && yarn test",
55
+ "preversion": "yarn install --frozen-lockfile && yarn ci",
56
+ "version": "node scripts/sync-jsr-version.js && git add jsr.json"
52
57
  },
53
58
  "devDependencies": {
54
59
  "@eslint/js": "^9.39.2",