diff --git a/generator.js b/generator.js index f18b6e4..bf548b9 100644 --- a/generator.js +++ b/generator.js @@ -32,6 +32,16 @@ async function generate (dir, files, base = '', rootOptions = {}) { } module.exports = (api, options, rootOptions) => { + if (options.template !== 'default-ts') { + api.extendPackage(pkg => { + return { + devDependencies: { + '@types/uni-app': '*', + '@types/html5plus': '*' + } + } + }) + } if (options.template === 'default-ts') { // 启用 typescript api.extendPackage(pkg => { return { @@ -105,4 +115,4 @@ module.exports = (api, options, rootOptions) => { await generate(path.resolve(__dirname, './template/common'), files) }) -} +} diff --git a/preset.json b/preset.json index bcf1f1a..f8821a8 100644 --- a/preset.json +++ b/preset.json @@ -12,4 +12,4 @@ ] } } -} +} diff --git a/template/common/public/index.html b/template/common/public/index.html index acee806..a3d5e00 100644 --- a/template/common/public/index.html +++ b/template/common/public/index.html @@ -1,27 +1,28 @@ - - - - - - <%= htmlWebpackPlugin.options.title %> - - - - + + + + + <%= htmlWebpackPlugin.options.title %> + + + + - - -
- - + + +
+ + - + \ No newline at end of file