diff --git a/app/styles/app.scss b/app/styles/app.scss new file mode 100644 index 0000000..e69de29 diff --git a/lib/lazy-with-style-preprocessors/addon/styles/addon.scss b/lib/lazy-with-style-preprocessors/addon/styles/addon.scss new file mode 100644 index 0000000..0652c05 --- /dev/null +++ b/lib/lazy-with-style-preprocessors/addon/styles/addon.scss @@ -0,0 +1 @@ +@import 'vanilla-addon-in-lazy-with-style-preprocessor'; diff --git a/lib/lazy-with-style-preprocessors/index.js b/lib/lazy-with-style-preprocessors/index.js new file mode 100644 index 0000000..5f3ac23 --- /dev/null +++ b/lib/lazy-with-style-preprocessors/index.js @@ -0,0 +1,11 @@ +/*jshint node:true*/ +var EngineAddon = require('ember-engines/lib/engine-addon'); +module.exports = EngineAddon.extend({ + name: 'lazy-with-style-preprocessors', + + lazyLoading: true, + + isDevelopingAddon: function() { + return true; + }, +}); diff --git a/lib/lazy-with-style-preprocessors/lib/vanilla-addon-in-lazy-with-style-preprocessor/app/styles/vanilla-addon-in-lazy-with-style-preprocessor.scss b/lib/lazy-with-style-preprocessors/lib/vanilla-addon-in-lazy-with-style-preprocessor/app/styles/vanilla-addon-in-lazy-with-style-preprocessor.scss new file mode 100644 index 0000000..07444dc --- /dev/null +++ b/lib/lazy-with-style-preprocessors/lib/vanilla-addon-in-lazy-with-style-preprocessor/app/styles/vanilla-addon-in-lazy-with-style-preprocessor.scss @@ -0,0 +1 @@ +/* vanilla-addon-in-lazy-with-style-preprocessor */ diff --git a/lib/lazy-with-style-preprocessors/lib/vanilla-addon-in-lazy-with-style-preprocessor/index.js b/lib/lazy-with-style-preprocessors/lib/vanilla-addon-in-lazy-with-style-preprocessor/index.js new file mode 100644 index 0000000..a866532 --- /dev/null +++ b/lib/lazy-with-style-preprocessors/lib/vanilla-addon-in-lazy-with-style-preprocessor/index.js @@ -0,0 +1,8 @@ +/*jshint node:true*/ +module.exports = { + name: 'vanilla-addon-in-lazy-with-style-preprocessor', + + isDevelopingAddon: function() { + return true; + }, +}; diff --git a/lib/lazy-with-style-preprocessors/lib/vanilla-addon-in-lazy-with-style-preprocessor/package.json b/lib/lazy-with-style-preprocessors/lib/vanilla-addon-in-lazy-with-style-preprocessor/package.json new file mode 100644 index 0000000..fc9837e --- /dev/null +++ b/lib/lazy-with-style-preprocessors/lib/vanilla-addon-in-lazy-with-style-preprocessor/package.json @@ -0,0 +1,11 @@ +{ + "name": "vanilla-addon-in-lazy-with-style-preprocessor", + "keywords": [ + "ember-addon", + "ember-engine" + ], + "dependencies": {}, + "ember-addon": { + "paths": [] + } +} diff --git a/lib/lazy-with-style-preprocessors/package.json b/lib/lazy-with-style-preprocessors/package.json new file mode 100644 index 0000000..9bc6d43 --- /dev/null +++ b/lib/lazy-with-style-preprocessors/package.json @@ -0,0 +1,18 @@ +{ + "name": "lazy-with-style-preprocessors", + "keywords": [ + "ember-addon", + "ember-engine" + ], + "dependencies": { + "ember-ajax": "*", + "ember-cli-babel": "*", + "ember-cli-htmlbars": "*", + "ember-cli-sass": "*" + }, + "ember-addon": { + "paths": [ + "lib/vanilla-addon-in-lazy-with-style-preprocessor" + ] + } +} diff --git a/package.json b/package.json index 480b40a..24ed9b0 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,7 @@ "ember-cli-htmlbars-inline-precompile": "^0.3.3", "ember-cli-inject-live-reload": "^1.4.1", "ember-cli-qunit": "^3.0.4", + "ember-cli-sass": "^6.1.1", "ember-cli-sri": "^2.1.0", "ember-cli-test-loader": "^1.1.0", "ember-cli-uglify": "^1.2.0", @@ -50,6 +51,7 @@ "paths": [ "lib/eager", "lib/lazy", + "lib/lazy-with-style-preprocessors", "lib/tree-invocation-order", "lib/vanilla-addon" ]