@hokid/generator-vuetut
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -102,3 +102,3 @@ const Generator = require('yeoman-generator'); | ||
if (this.lodash) { | ||
this.dependencies.push('lodash'); | ||
this.dependencies.push('lodash', '@types/lodash'); | ||
} | ||
@@ -114,3 +114,7 @@ | ||
compilerOptions: { | ||
module: "esnext" | ||
module: "esnext", | ||
lib: [ | ||
"dom", | ||
"es2017" | ||
], | ||
} | ||
@@ -165,3 +169,3 @@ } | ||
this.destinationPath('src/views/About.vue'), | ||
this.destinationPath('src/components/**/*') | ||
this.destinationPath('src/components/') | ||
] | ||
@@ -257,3 +261,3 @@ ) | ||
this.templatePath(this.language + '/.env.local'), | ||
this.templatePath(this.language + '/.webpack.config.webstorm'), | ||
this.templatePath(this.language + '/.webpack.config.webstorm.js'), | ||
this.templatePath(this.language + '/vue.config.js'), | ||
@@ -260,0 +264,0 @@ ], |
{ | ||
"name": "@hokid/generator-vuetut", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Yoman generator. Setup another configuration based on vue template.", | ||
@@ -5,0 +5,0 @@ "main": "generators/app/index.js", |
16134
433