Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kellyselden/ember-cli-funnel
Exclude files from an ember build
https://github.com/kellyselden/ember-cli-funnel
Last synced: 16 days ago
JSON representation
Exclude files from an ember build
- Host: GitHub
- URL: https://github.com/kellyselden/ember-cli-funnel
- Owner: kellyselden
- License: mit
- Created: 2016-08-22T22:09:43.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-06T10:59:00.000Z (about 6 years ago)
- Last Synced: 2025-01-09T08:23:57.994Z (17 days ago)
- Language: JavaScript
- Size: 72.3 KB
- Stars: 31
- Watchers: 4
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
ember-cli-funnel
==============================================================================[![Greenkeeper badge](https://badges.greenkeeper.io/kellyselden/ember-cli-funnel.svg)](https://greenkeeper.io/)
[![npm version](https://badge.fury.io/js/ember-cli-funnel.svg)](https://badge.fury.io/js/ember-cli-funnel)
[![Build Status](https://travis-ci.org/kellyselden/ember-cli-funnel.svg?branch=master)](https://travis-ci.org/kellyselden/ember-cli-funnel)
[![Build Status](https://dev.azure.com/kellyselden/ember-cli-funnel/_apis/build/status/kellyselden.ember-cli-funnel)](https://dev.azure.com/kellyselden/ember-cli-funnel/_build/latest?definitionId=1)Exclude files from an ember build
Installation
------------------------------------------------------------------------------```
ember install ember-cli-funnel
```Usage
------------------------------------------------------------------------------```js
// ember-cli-build.jslet app = new EmberApp(defaults, {
funnel: {
exclude: [
`${defaults.project.pkg.name}/routes/style-guide/**/*`,
'addon-tree-output/some-addon/styles/**/*.scss'
]
}
});
```### Options
* `enabled` (bool): defaults to only in production
* `exclude` (array of globs): defaults to empty array### Advanced Example 1
Exclude route files and router definitions from the `master` branch build
```
ember install ember-git-version
npm install git-repo-info --save-dev
``````js
// ember-cli-build.jslet getRepoInfo = require('git-repo-info');
let info = getRepoInfo();
let app = new EmberApp(defaults, {
funnel: {
enabled: info.branch === 'master',
exclude: [`${defaults.project.pkg.name}/routes/style-guide/**/*`]
}
});
``````js
// app/router.jsif (config.branch !== 'master') {
this.route('style-guide', function() {
// ...
});
}
```### Advanced Example 2
Exclude different files for different environments
```js
// ember-cli-build.jslet exclude = [];
switch (EmberApp.env()) {
case 'development':
exclude.push(`${defaults.project.pkg.name}/routes/prod-only/**/*`);
break;
case 'production':
exclude.push(`${defaults.project.pkg.name}/routes/dev-only/**/*`);
break;
}let app = new EmberApp(defaults, {
funnel: {
enabled: true,
exclude
}
});
```Contributing
------------------------------------------------------------------------------### Installation
* `git clone `
* `cd ember-cli-funnel`
* `npm install`### Linting
* `npm run lint:js`
* `npm run lint:js -- --fix`### Running tests
* `ember test` – Runs the test suite on the current Ember version
* `ember test --server` – Runs the test suite in "watch mode"
* `ember try:each` – Runs the test suite against multiple Ember versions### Running the dummy application
* `ember serve`
* Visit the dummy application at [http://localhost:4200](http://localhost:4200).For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/).
License
------------------------------------------------------------------------------This project is licensed under the [MIT License](LICENSE.md).