
Security News
minimatch Patches 3 High-Severity ReDoS Vulnerabilities
minimatch patched three high-severity ReDoS vulnerabilities that can stall the Node.js event loop, and Socket has released free certified patches.
ember-cli-sass-pods
Advanced tools
Enjoy styling your pods with the sass style file in the pod directory.
Say you have a contacts route and contact-box component.
ember g route contacts -p
ember g component contact-box -p
ember g style contacts -p
ember g style components/contact-box -p
app/
app/contacts
app/contacts/route.js
app/contacts/template.hbs
app/contacts/style.scss
app/components/
app/components/contact-box
app/components/contact-box/component.js
app/components/contact-box/template.hbs
app/components/contact-box/style.scss
app/styles/
app/styles/app.scss
app/styles/[importFileName].scss
@import "contacts/style";
@import "components/contact-box/style";
ember install ember-cli-sass-podsIt will automatically install ember-cli-sass sass preprocess package.
You need to add the import file into your main app scss file.
If you use podModulePrefix your imports file would be:
[podModulePrefix].scss
otherwise it would be:
pods.scss
Add import line into your main app scss file:
@import "[podModulePrefix] or pods";
Add paths for watching in the 'ember.cli-build.js':
var app = new EmberApp(defaults, {
sassOptions: {
includePaths: ['app']
}
});
To generate styles into your pod - just run:
ember g style [path] -p
Enjoy styling your pod! :)
FAQs
Generates style.scss file into pods.
The npm package ember-cli-sass-pods receives a total of 37 weekly downloads. As such, ember-cli-sass-pods popularity was classified as not popular.
We found that ember-cli-sass-pods 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
minimatch patched three high-severity ReDoS vulnerabilities that can stall the Node.js event loop, and Socket has released free certified patches.

Research
/Security News
Socket uncovered 26 malicious npm packages tied to North Korea's Contagious Interview campaign, retrieving a live 9-module infostealer and RAT from the adversary's C2.

Research
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.