How to use the aurelia-tools.cleanGeneratedCode function in aurelia-tools

To help you get started, we’ve selected a few aurelia-tools examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github MarcScheib / aurelia-notify / build / tasks / build.js View on Github external
return through2.obj(function(file, enc, callback) {
    file.contents = new Buffer(tools.cleanGeneratedCode(file.contents.toString('utf8')));
    this.push(file);
    return callback();
  });
}
github aurelia / binding / build / tasks / build.js View on Github external
return through2.obj(function(file, enc, callback) {
    file.contents = new Buffer(tools.cleanGeneratedCode(file.contents.toString('utf8')));
    this.push(file);
    return callback();
  });
}
github aurelia / loader-default / build / tasks / build.js View on Github external
return through2.obj(function(file, enc, callback) {
    file.contents = new Buffer(tools.cleanGeneratedCode(file.contents.toString('utf8')));
    this.push(file);
    return callback();
  });
}
github aurelia / validatejs / build / tasks / build.js View on Github external
return through2.obj(function(file, enc, callback) {
    file.contents = new Buffer(tools.cleanGeneratedCode(file.contents.toString('utf8')));
    this.push(file);
    return callback();
  });
}
github aurelia / templating-binding / build / tasks / build.js View on Github external
return through2.obj(function(file, enc, callback) {
    file.contents = new Buffer(tools.cleanGeneratedCode(file.contents.toString('utf8')));
    this.push(file);
    return callback();
  });
}

aurelia-tools

Tools and utility functions used to build and develop Aurelia's libraries.

MIT
Latest version published 6 years ago

Package Health Score

51 / 100
Full package analysis