@@ -0,0 +1,19 @@
+<h1>注意!</h1>
+1.页面以 views文价夹内为准<br/>
+2.如果升版本打包记得修改 dll/test/dll.css<br/>
+将
+
+ ```bash
+ a {
+ color: #f68704;
+ text-decoration: none;
+ }
+ a:hover,
+ a:focus {
+ text-decoration: underline;
+ ```
+中的#337ab7替换为#f68704
@@ -0,0 +1,5 @@
+const del = require('del');
+del(['build/*']).then(paths => {
+ console.log('Deleted files and folders:\n', paths.join('\n'));
+});