@vuesimple/vs-button 1.3.41 → 1.4.2
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/build/rollup.config.js +4 -4
- package/package.json +10 -10
package/README.md
CHANGED
package/build/rollup.config.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
// rollup.config.js
|
|
2
|
-
import vue from 'rollup-plugin-vue';
|
|
3
|
-
import buble from 'rollup-plugin-buble';
|
|
4
|
-
import image from '@rollup/plugin-image';
|
|
5
2
|
import { terser } from 'rollup-plugin-terser';
|
|
3
|
+
import buble from '@rollup/plugin-buble';
|
|
4
|
+
import image from '@rollup/plugin-image';
|
|
5
|
+
import nodeResolve from '@rollup/plugin-node-resolve';
|
|
6
|
+
import vue from 'rollup-plugin-vue';
|
|
6
7
|
import minimist from 'minimist';
|
|
7
|
-
import nodeResolve from 'rollup-plugin-node-resolve';
|
|
8
8
|
|
|
9
9
|
const argv = minimist(process.argv.slice(2));
|
|
10
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuesimple/vs-button",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"description": "A simple vue button. Perfect for all your button scenarios.",
|
|
5
5
|
"main": "dist/vs-button.umd.js",
|
|
6
6
|
"module": "dist/vs-button.esm.js",
|
|
@@ -15,15 +15,15 @@
|
|
|
15
15
|
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vs-button.min.js"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
+
"@rollup/plugin-buble": "0.21.3",
|
|
18
19
|
"@rollup/plugin-image": "2.0.5",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"rollup
|
|
22
|
-
"rollup-plugin-
|
|
23
|
-
"rollup-plugin-
|
|
24
|
-
"
|
|
25
|
-
"vue": "
|
|
26
|
-
"vue-template-compiler": "^2.6.10"
|
|
20
|
+
"@rollup/plugin-node-resolve": "13.0.5",
|
|
21
|
+
"minimist": "1.2.5",
|
|
22
|
+
"rollup": "1.32.0",
|
|
23
|
+
"rollup-plugin-terser": "6.1.0",
|
|
24
|
+
"rollup-plugin-vue": "5.1.9",
|
|
25
|
+
"vue": "2.6.10",
|
|
26
|
+
"vue-template-compiler": "2.6.10"
|
|
27
27
|
},
|
|
28
28
|
"repository": {
|
|
29
29
|
"type": "git",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"url": "https://github.com/ashwinkshenoy/vue-simple/issues"
|
|
53
53
|
},
|
|
54
54
|
"homepage": "https://github.com/ashwinkshenoy/vue-simple/tree/master/packages/vs-button",
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "337bc9bb282ad2e0d7aebe8f581eecaf822dd809"
|
|
56
56
|
}
|