Skip to content
This repository was archived by the owner on May 8, 2025. It is now read-only.

Commit 88bdb31

Browse files
committed
Merge branch 'dev'
2 parents 7c8ec6b + 41d9021 commit 88bdb31

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

generator/index.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module.exports = (api, opts, rootOpts) => {
33

44
api.extendPackage({
55
dependencies: {
6-
vuetify: "^1.0.16"
6+
vuetify: "^1.0.19"
77
}
88
})
99

@@ -17,6 +17,14 @@ module.exports = (api, opts, rootOpts) => {
1717
})
1818
}
1919

20+
if (opts.usePolyfill) {
21+
api.extendPackage({
22+
devDependencies: {
23+
"@babel/polyfill": "^7.0.0-beta.49",
24+
}
25+
})
26+
}
27+
2028
// Render vuetify plugin file
2129
api.render({
2230
'./src/plugins/vuetify.js': './templates/default/src/plugins/vuetify.js'

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-cli-plugin-vuetify",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "Plugin for vue cli 3",
55
"main": "index.js",
66
"scripts": {

prompts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = [
22
{
33
name: 'replaceComponents',
44
type: 'confirm',
5-
message: 'Use default theme? (will replace App.vue and HelloWorld.vue)',
5+
message: 'Use a pre-made template? (will replace App.vue and HelloWorld.vue)',
66
default: true,
77
},
88
{

0 commit comments

Comments
 (0)