Skip to content

Commit 36c5f1a

Browse files
add publish config
1 parent 19537b3 commit 36c5f1a

File tree

35 files changed

+128
-28
lines changed

35 files changed

+128
-28
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
},
3333
"packageManager": "[email protected]",
3434
"publishConfig": {
35-
"registry": "https://registry.npmjs.org/"
35+
"registry": "https://registry.npmjs.org/",
36+
"access": "public"
3637
}
3738
}

packages/config-typescript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
"publishConfig": {
77
"access": "public"
88
}
9-
}
9+
}

packages/config-vitest/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,8 @@
2020
"playwright": "^1.42.1",
2121
"vite-plugin-node-polyfills": "^0.21.0"
2222
},
23-
"type": "module"
23+
"type": "module",
24+
"publishConfig": {
25+
"access": "public"
26+
}
2427
}

packages/core/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,8 @@
5656
},
5757
"main": "./dist/commonjs/index.js",
5858
"types": "./dist/commonjs/index.d.ts",
59-
"type": "module"
59+
"type": "module",
60+
"publishConfig": {
61+
"access": "public"
62+
}
6063
}

packages/diff/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,8 @@
5151
},
5252
"main": "./dist/commonjs/index.js",
5353
"types": "./dist/commonjs/index.d.ts",
54-
"type": "module"
54+
"type": "module",
55+
"publishConfig": {
56+
"access": "public"
57+
}
5558
}

packages/docs/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,8 @@
3131
},
3232
"devDependencies": {
3333
"@types/react": "^18.2.73"
34+
},
35+
"publishConfig": {
36+
"access": "public"
3437
}
3538
}

packages/file-ops/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,8 @@
4949
},
5050
"main": "./dist/commonjs/index.js",
5151
"types": "./dist/commonjs/index.d.ts",
52-
"type": "module"
52+
"type": "module",
53+
"publishConfig": {
54+
"access": "public"
55+
}
5356
}

packages/jimp/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -129,5 +129,8 @@
129129
},
130130
"main": "./dist/commonjs/index.js",
131131
"types": "./dist/commonjs/index.d.ts",
132-
"type": "module"
132+
"type": "module",
133+
"publishConfig": {
134+
"access": "public"
135+
}
133136
}

packages/test-utils/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,8 @@
5555
},
5656
"main": "./dist/commonjs/index.js",
5757
"types": "./dist/commonjs/index.d.ts",
58-
"type": "module"
58+
"type": "module",
59+
"publishConfig": {
60+
"access": "public"
61+
}
5962
}

packages/types/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,8 @@
4646
"type": "module",
4747
"dependencies": {
4848
"zod": "^3.22.4"
49+
},
50+
"publishConfig": {
51+
"access": "public"
4952
}
5053
}

packages/utils/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,8 @@
4545
},
4646
"main": "./dist/commonjs/index.js",
4747
"types": "./dist/commonjs/index.d.ts",
48-
"type": "module"
48+
"type": "module",
49+
"publishConfig": {
50+
"access": "public"
51+
}
4952
}

plugins/js-bmp/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,8 @@
5454
"@jimp/types": "workspace:*",
5555
"@jimp/utils": "workspace:*",
5656
"bmp-ts": "^1.0.9"
57+
},
58+
"publishConfig": {
59+
"access": "public"
5760
}
5861
}

plugins/js-gif/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,8 @@
5454
"@jimp/types": "workspace:*",
5555
"gifwrap": "^0.10.1",
5656
"omggif": "^1.0.10"
57+
},
58+
"publishConfig": {
59+
"access": "public"
5760
}
5861
}

plugins/js-jpeg/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,8 @@
5252
"jpeg-js": "^0.4.4",
5353
"@jimp/core": "workspace:*",
5454
"@jimp/types": "workspace:*"
55+
},
56+
"publishConfig": {
57+
"access": "public"
5558
}
5659
}

plugins/js-png/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,8 @@
5454
},
5555
"main": "./dist/commonjs/index.js",
5656
"types": "./dist/commonjs/index.d.ts",
57-
"type": "module"
57+
"type": "module",
58+
"publishConfig": {
59+
"access": "public"
60+
}
5861
}

plugins/js-tiff/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,8 @@
5252
"@jimp/core": "workspace:*",
5353
"@jimp/types": "workspace:*",
5454
"utif2": "^4.1.0"
55+
},
56+
"publishConfig": {
57+
"access": "public"
5558
}
5659
}

plugins/plugin-blit/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,8 @@
5353
},
5454
"main": "./dist/commonjs/index.js",
5555
"types": "./dist/commonjs/index.d.ts",
56-
"type": "module"
56+
"type": "module",
57+
"publishConfig": {
58+
"access": "public"
59+
}
5760
}

plugins/plugin-blur/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,8 @@
4949
},
5050
"main": "./dist/commonjs/index.js",
5151
"types": "./dist/commonjs/index.d.ts",
52-
"type": "module"
52+
"type": "module",
53+
"publishConfig": {
54+
"access": "public"
55+
}
5356
}

plugins/plugin-circle/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,8 @@
5252
},
5353
"main": "./dist/commonjs/index.js",
5454
"types": "./dist/commonjs/index.d.ts",
55-
"type": "module"
55+
"type": "module",
56+
"publishConfig": {
57+
"access": "public"
58+
}
5659
}

plugins/plugin-color/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,8 @@
5757
},
5858
"main": "./dist/commonjs/index.js",
5959
"types": "./dist/commonjs/index.d.ts",
60-
"type": "module"
60+
"type": "module",
61+
"publishConfig": {
62+
"access": "public"
63+
}
6164
}

plugins/plugin-contain/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,8 @@
5555
},
5656
"main": "./dist/commonjs/index.js",
5757
"types": "./dist/commonjs/index.d.ts",
58-
"type": "module"
58+
"type": "module",
59+
"publishConfig": {
60+
"access": "public"
61+
}
5962
}

plugins/plugin-cover/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,8 @@
5555
},
5656
"main": "./dist/commonjs/index.js",
5757
"types": "./dist/commonjs/index.d.ts",
58-
"type": "module"
58+
"type": "module",
59+
"publishConfig": {
60+
"access": "public"
61+
}
5962
}

plugins/plugin-crop/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,8 @@
5454
},
5555
"main": "./dist/commonjs/index.js",
5656
"types": "./dist/commonjs/index.d.ts",
57-
"type": "module"
57+
"type": "module",
58+
"publishConfig": {
59+
"access": "public"
60+
}
5861
}

plugins/plugin-displace/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,8 @@
4646
},
4747
"main": "./dist/commonjs/index.js",
4848
"types": "./dist/commonjs/index.d.ts",
49-
"type": "module"
49+
"type": "module",
50+
"publishConfig": {
51+
"access": "public"
52+
}
5053
}

plugins/plugin-dither/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,8 @@
4545
},
4646
"main": "./dist/commonjs/index.js",
4747
"types": "./dist/commonjs/index.d.ts",
48-
"type": "module"
48+
"type": "module",
49+
"publishConfig": {
50+
"access": "public"
51+
}
4952
}

plugins/plugin-fisheye/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,8 @@
5353
},
5454
"main": "./dist/commonjs/index.js",
5555
"types": "./dist/commonjs/index.d.ts",
56-
"type": "module"
56+
"type": "module",
57+
"publishConfig": {
58+
"access": "public"
59+
}
5760
}

plugins/plugin-flip/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,8 @@
5252
},
5353
"main": "./dist/commonjs/index.js",
5454
"types": "./dist/commonjs/index.d.ts",
55-
"type": "module"
55+
"type": "module",
56+
"publishConfig": {
57+
"access": "public"
58+
}
5659
}

plugins/plugin-hash/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,8 @@
6060
},
6161
"main": "./dist/commonjs/index.js",
6262
"types": "./dist/commonjs/index.d.ts",
63-
"type": "module"
63+
"type": "module",
64+
"publishConfig": {
65+
"access": "public"
66+
}
6467
}

plugins/plugin-mask/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,8 @@
5252
},
5353
"main": "./dist/commonjs/index.js",
5454
"types": "./dist/commonjs/index.d.ts",
55-
"type": "module"
55+
"type": "module",
56+
"publishConfig": {
57+
"access": "public"
58+
}
5659
}

plugins/plugin-print/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,8 @@
7979
"parse-bmfont-binary": "^1.0.6",
8080
"parse-bmfont-xml": "^1.1.6",
8181
"zod": "^3.22.4"
82+
},
83+
"publishConfig": {
84+
"access": "public"
8285
}
8386
}

plugins/plugin-resize/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,8 @@
5252
},
5353
"main": "./dist/commonjs/index.js",
5454
"types": "./dist/commonjs/index.d.ts",
55-
"type": "module"
55+
"type": "module",
56+
"publishConfig": {
57+
"access": "public"
58+
}
5659
}

plugins/plugin-rotate/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,8 @@
5656
},
5757
"main": "./dist/commonjs/index.js",
5858
"types": "./dist/commonjs/index.d.ts",
59-
"type": "module"
59+
"type": "module",
60+
"publishConfig": {
61+
"access": "public"
62+
}
6063
}

plugins/plugin-shadow/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,8 @@
5656
},
5757
"main": "./dist/commonjs/index.js",
5858
"types": "./dist/commonjs/index.d.ts",
59-
"type": "module"
59+
"type": "module",
60+
"publishConfig": {
61+
"access": "public"
62+
}
6063
}

plugins/plugin-threshold/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,8 @@
5656
},
5757
"main": "./dist/commonjs/index.js",
5858
"types": "./dist/commonjs/index.d.ts",
59-
"type": "module"
59+
"type": "module",
60+
"publishConfig": {
61+
"access": "public"
62+
}
6063
}

turbo/generators/templates/package/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,8 @@
4242
},
4343
"main": "./dist/commonjs/index.js",
4444
"types": "./dist/commonjs/index.d.ts",
45-
"type": "module"
45+
"type": "module",
46+
"publishConfig": {
47+
"access": "public"
48+
}
4649
}

0 commit comments

Comments
 (0)