This commit is contained in:
fxy060608 2019-03-22 14:50:08 +08:00
commit e254d2044e
3 changed files with 35 additions and 24 deletions

View File

@ -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)
})
}
}

View File

@ -12,4 +12,4 @@
]
}
}
}
}

View File

@ -1,27 +1,28 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>
<%= htmlWebpackPlugin.options.title %>
</title>
<script>
document.addEventListener('DOMContentLoaded', function() {
document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + 'px'
})
</script>
<link rel="stylesheet" href="<%= BASE_URL %>static/index.css" />
</head>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>
<%= htmlWebpackPlugin.options.title %>
</title>
<script>
document.addEventListener('DOMContentLoaded', function() {
document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + 'px'
})
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')
</script>
<link rel="stylesheet" href="<%= BASE_URL %>static/index.css" />
</head>
<body>
<noscript>
<strong>Please enable JavaScript to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
<body>
<noscript>
<strong>Please enable JavaScript to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
</html>