rollup 3.10.1 → 3.11.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.
- package/README.md +1 -1
- package/dist/bin/rollup +2 -2
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +114 -66
- package/dist/es/shared/watch.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.d.ts +1 -0
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +9 -9
- package/dist/shared/rollup.js +129 -70
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +21 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.11.0",
|
|
4
4
|
"description": "Next-generation ES module bundler",
|
|
5
5
|
"main": "dist/rollup.js",
|
|
6
6
|
"module": "dist/es/rollup.js",
|
|
@@ -10,8 +10,11 @@
|
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "rollup --config rollup.config.ts --configPlugin typescript",
|
|
13
|
+
"dev": "vitepress dev docs",
|
|
13
14
|
"build:cjs": "rollup --config rollup.config.ts --configPlugin typescript --configTest",
|
|
14
15
|
"build:bootstrap": "node dist/bin/rollup --config rollup.config.ts --configPlugin typescript",
|
|
16
|
+
"build:docs": "vitepress build docs",
|
|
17
|
+
"preview:docs": "vitepress preview docs",
|
|
15
18
|
"ci:lint": "concurrently 'npm:lint:js:nofix' 'npm:lint:markdown:nofix'",
|
|
16
19
|
"ci:test": "npm run build:cjs && npm run build:bootstrap && npm run test:all",
|
|
17
20
|
"ci:test:only": "npm run build:cjs && npm run build:bootstrap && npm run test:only",
|
|
@@ -58,6 +61,12 @@
|
|
|
58
61
|
"fsevents": "~2.3.2"
|
|
59
62
|
},
|
|
60
63
|
"devDependencies": {
|
|
64
|
+
"@codemirror/commands": "^6.1.3",
|
|
65
|
+
"@codemirror/lang-javascript": "^6.1.2",
|
|
66
|
+
"@codemirror/language": "^6.3.2",
|
|
67
|
+
"@codemirror/search": "^6.2.3",
|
|
68
|
+
"@codemirror/state": "^6.2.0",
|
|
69
|
+
"@codemirror/view": "^6.7.2",
|
|
61
70
|
"@jridgewell/sourcemap-codec": "^1.4.14",
|
|
62
71
|
"@rollup/plugin-alias": "^4.0.2",
|
|
63
72
|
"@rollup/plugin-buble": "^1.0.1",
|
|
@@ -74,6 +83,8 @@
|
|
|
74
83
|
"@types/yargs-parser": "^21.0.0",
|
|
75
84
|
"@typescript-eslint/eslint-plugin": "^5.48.0",
|
|
76
85
|
"@typescript-eslint/parser": "^5.48.0",
|
|
86
|
+
"@vue/eslint-config-prettier": "^7.0.0",
|
|
87
|
+
"@vue/eslint-config-typescript": "^11.0.2",
|
|
77
88
|
"acorn": "^8.8.1",
|
|
78
89
|
"acorn-import-assertions": "^1.8.0",
|
|
79
90
|
"acorn-jsx": "^5.3.2",
|
|
@@ -92,6 +103,7 @@
|
|
|
92
103
|
"eslint-plugin-import": "^2.26.0",
|
|
93
104
|
"eslint-plugin-prettier": "^4.2.1",
|
|
94
105
|
"eslint-plugin-unicorn": "^45.0.2",
|
|
106
|
+
"eslint-plugin-vue": "^9.8.0",
|
|
95
107
|
"fixturify": "^3.0.0",
|
|
96
108
|
"flru": "^1.0.2",
|
|
97
109
|
"fs-extra": "^11.1.0",
|
|
@@ -103,8 +115,10 @@
|
|
|
103
115
|
"lint-staged": "^13.1.0",
|
|
104
116
|
"locate-character": "^2.0.5",
|
|
105
117
|
"magic-string": "^0.27.0",
|
|
118
|
+
"mermaid": "~9.1.7",
|
|
106
119
|
"mocha": "^10.2.0",
|
|
107
120
|
"nyc": "^15.1.0",
|
|
121
|
+
"pinia": "^2.0.28",
|
|
108
122
|
"prettier": "^2.8.2",
|
|
109
123
|
"pretty-bytes": "^6.0.0",
|
|
110
124
|
"pretty-ms": "^8.0.0",
|
|
@@ -122,9 +136,15 @@
|
|
|
122
136
|
"terser": "^5.16.1",
|
|
123
137
|
"tslib": "^2.4.1",
|
|
124
138
|
"typescript": "^4.9.4",
|
|
139
|
+
"vitepress": "^1.0.0-alpha.35",
|
|
140
|
+
"vitepress-plugin-mermaid": "^2.0.8",
|
|
141
|
+
"vue": "^3.2.45",
|
|
125
142
|
"weak-napi": "^2.0.2",
|
|
126
143
|
"yargs-parser": "^21.1.1"
|
|
127
144
|
},
|
|
145
|
+
"overrides": {
|
|
146
|
+
"d3": "7.8.0"
|
|
147
|
+
},
|
|
128
148
|
"files": [
|
|
129
149
|
"dist/**/*.js",
|
|
130
150
|
"dist/*.d.ts",
|