We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I believe making this project an ember-cli addon would basically require the following steps:
package.json
{ // snip .... "keywords": [ // existing keywords? "ember-addon" ], "ember-addon": { "main": "ember-addon-index.js" } }
ember-addon-index.js
const MergeTrees = require('broccoli-merge-trees'); const StyleManifest = require('broccoli-style-manifest'); module.exports = { name: 'broccoli-style-manifest', preprocessTree(type, tree) { if (type === 'src') { return new MergeTrees([tree, new StyleManifest(tree, { outputFileNameWithoutExtension: 'src/ui/styles/app' })], { overwrite: true }); } } };
Doing the above would enable folks to opt-in to colocated styles in glimmer apps (and ultimately ember apps with module unification layout) via:
ember new my-app -b @glimmer/blueprint cd my-app ember install broccoli-style-manifest
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I believe making this project an ember-cli addon would basically require the following steps:
package.json
:ember-addon-index.js
file with the following contents:Doing the above would enable folks to opt-in to colocated styles in glimmer apps (and ultimately ember apps with module unification layout) via:
The text was updated successfully, but these errors were encountered: