Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
ZengXiangJun committed Jun 25, 2019
1 parent 1b87c9d commit b4e38df
Show file tree
Hide file tree
Showing 6 changed files with 1,684 additions and 1,032 deletions.
10 changes: 8 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
{
"presets": ["es2015"]
}
"presets": [
["@babel/preset-env", {
"targets": {
"browsers": ["Chrome >= 49", "Safari >= 10", "IE >= 11"]
}
}]
]
}
19 changes: 13 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
preview
build
node_modules
.DS_Store
coverage/
*.log
npm-debug.log
logs
*.zip
.logs/
logs/
*.swp
run/
*-run/
.idea/
.DS_Store
assembly
.nodejs-cache
build
release

preview
6 changes: 6 additions & 0 deletions copy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const path = require('path');
const fse = require('fs-extra');
module.exports = function (cb) {
// fse.copySync(path.resolve(__dirname, 'src/xxx/'), path.resolve(__dirname, 'build/xxx/'));
cb && cb();
}
Loading

0 comments on commit b4e38df

Please sign in to comment.