mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
chore(build.config): remove 'fs' module
I'm not sure why <code>var fs = require('fs');</code> is here anymore
Closes #870
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
var fs = require('fs');
|
||||
module.exports = {
|
||||
dist: 'dist',
|
||||
distJs: 'dist/js',
|
||||
|
||||
@@ -132,7 +132,7 @@ gulp.task('changelog', function(done) {
|
||||
version: pkg.version,
|
||||
}, function(err, data) {
|
||||
if (err) return done(err);
|
||||
require('fs').writeFileSync('CHANGELOG.md', data);
|
||||
fs.writeFileSync('CHANGELOG.md', data);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user