
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
ember-cli-polyfill-importer
Advanced tools
Ember-CLI addon to add a polyfills based on caniuse tests, specific browsers (browserlist) or custom logic.
caniuse and browserlist tests are made against app's targets.js
.
If those tests fail, the polyfill/script won't be imported.
It will also use the fastbootShim transformation while importing, if ember-cli-fastboot
is installed in the host app.
ember install ember-cli-polyfill-importer
Just install your polyfill npm package and add configuration as follows:
// ember-cli-build.js
// ..
let app = new EmberApp(defaults, {
// Add options here
polyfills: {
// key is the package name
'matchmedia-polyfill': {
files: ['matchMedia.js'], // files array relative to package's root
caniuse: 'matchmedia' // can i use test name
},
'raf-polyfill': {
files: ['raf.js'],
shouldImport(targets) {
// targets is the host app browser targets
return false; // or your custom test
}
},
'element-closest': {
files: ['browser.js'],
browsers: ['ie 9', 'chrome 52'] // browserlist array of browsers query in which to include the polyfill
// optionally, you can define the options to use when calling app.import
importOptions: { }
}
}
});
// ..
You can also use this addon as another addon dependency. To do that, make sure that ember-cli-polyfill-importer
and the polyfill npm package are in your dependencies
and not devDependencies
and provide configuration in your index.js
file like:
// index.js
module.exports = {
name: require('./package').name,
options: {
// key is the package name
'matchmedia-polyfill': {
files: ['matchMedia.js'], // files array relative to package's root
caniuse: 'matchmedia' // can i use test name
},
'raf-polyfill': {
files: ['raf.js'],
shouldImport(targets) {
// targets is the host app browser targets
return false; // or your custom test
}
},
'element-closest': {
files: ['browser.js'],
browsers: ['ie 9', 'chrome 52'] // browserlist array of browsers query in which to include the polyfill
// optionally, you can define the options to use when calling app.import
importOptions: { }
}
}
};
caniuse test is done using https://github.com/nyalab/caniuse-api project. browserlist test is done using https://github.com/browserslist/browserslist project.
This project is licensed under the MIT License.
FAQs
The default blueprint for ember-cli addons.
The npm package ember-cli-polyfill-importer receives a total of 1,092 weekly downloads. As such, ember-cli-polyfill-importer popularity was classified as popular.
We found that ember-cli-polyfill-importer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.