prebundle 1.2.2 → 1.2.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Prebundle
2
2
 
3
- Prebundle 3rd party dependencies, output a single js file, a package.json file and the dts files.
3
+ Prebundle Node.js dependencies, output a single js file, a package.json file and the dts files.
4
4
 
5
5
  Based on [ncc](https://github.com/vercel/ncc) and [rollup-plugin-dts](https://www.npmjs.com/package/rollup-plugin-dts).
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prebundle",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/rspack-contrib/prebundle"
@@ -15,6 +15,13 @@
15
15
  "bin.js",
16
16
  "compiled"
17
17
  ],
18
+ "scripts": {
19
+ "build": "rslib build",
20
+ "dev": "rslib build --watch",
21
+ "prebundle": "node ./bin.js",
22
+ "prepublishOnly": "npm run build",
23
+ "bump": "npx bumpp"
24
+ },
18
25
  "dependencies": {
19
26
  "@vercel/ncc": "0.38.1",
20
27
  "prettier": "^3.2.5",
@@ -23,6 +30,7 @@
23
30
  "terser": "^5.31.2"
24
31
  },
25
32
  "devDependencies": {
33
+ "@rslib/core": "0.0.11",
26
34
  "@types/fs-extra": "^11.0.4",
27
35
  "@types/node": "18.x",
28
36
  "fast-glob": "^3.3.2",
@@ -30,12 +38,10 @@
30
38
  "rslog": "^1.2.2",
31
39
  "typescript": "^5.4.2"
32
40
  },
41
+ "packageManager": "pnpm@9.0.5",
33
42
  "publishConfig": {
34
- "registry": "https://registry.npmjs.org/"
35
- },
36
- "scripts": {
37
- "build": "tsc",
38
- "dev": "tsc --watch",
39
- "prebundle": "node ./bin.js"
43
+ "access": "public",
44
+ "registry": "https://registry.npmjs.org/",
45
+ "provenance": true
40
46
  }
41
- }
47
+ }
@@ -1,2 +0,0 @@
1
- export = __webpack_exports__;
2
- declare var __webpack_exports__: any;