ndsc-vue-quill 25.12.3010 → 25.12.3012
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/package.json +4 -2
- package/vite.config.js +2 -2
- package/.vscode/settings.json +0 -12
package/package.json
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ndsc-vue-quill",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "25.12.
|
|
4
|
+
"version": "25.12.3012",
|
|
5
|
+
"main": "dist/ndsc-vue-quill.umd.js",
|
|
6
|
+
"module": "dist/ndsc-vue-quill.js",
|
|
5
7
|
"type": "module",
|
|
6
8
|
"scripts": {
|
|
7
9
|
"dev": "vite",
|
|
@@ -15,4 +17,4 @@
|
|
|
15
17
|
"@vitejs/plugin-vue": "^5.1.4",
|
|
16
18
|
"vite": "^5.4.9"
|
|
17
19
|
}
|
|
18
|
-
}
|
|
20
|
+
}
|
package/vite.config.js
CHANGED
|
@@ -6,8 +6,8 @@ export default defineConfig({
|
|
|
6
6
|
plugins: [vue()],
|
|
7
7
|
build: {
|
|
8
8
|
lib: {
|
|
9
|
-
entry: "./src/components/index.js", // Path of library entry
|
|
10
|
-
name: "NdscVueQuill", // The name of the exposed global variable.
|
|
9
|
+
entry: "./src/components/index.js", // Path of library entry.
|
|
10
|
+
name: "NdscVueQuill", // The name of the exposed global variable. 暴露的全局变量的名称
|
|
11
11
|
fileName: "ndsc-vue-quill", // The name of the package file output. The default file name is the name option of the project package.json. It can also be defined as a function taking the format as an argument.
|
|
12
12
|
},
|
|
13
13
|
rollupOptions: {
|