9

I've been using bower for a while combined with wiredep but I want to switch to using the System.js loader. For this, JSPM is ideal. However, one of the things the combination of bower and wiredep was doing for me was also including the (S)CSS.

Does JSPM deal with these files at all? Or is there a different approach that I should take to also deal with those files?

Robin_f
  • 212
  • 2
  • 11

2 Answers2

12

jspm install css

there is a plugin for this :)

for more infomation: https://github.com/systemjs/plugin-css


update: also, as @Ron said:

use it as <script>System.import('packageName/package.css!')</script>

Ya Zhuang
  • 4,652
  • 31
  • 40
0

If you are using jspm it's convenient to add this settings to jspm related config.js file

System.config({
  meta: {
    '*.css': { loader: 'css' }
  },
...
}

so you don't need to add a suffix !css each time you import css file

Sergiy Seletskyy
  • 16,236
  • 7
  • 69
  • 80