Guest User

Untitled

a guest
Dec 17th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. module.exports = {
  2. paths: {
  3. watched: ['resources']
  4. },
  5. files: {
  6. javascripts: { joinTo: {
  7. 'scripts/app.js': /^resources/,
  8. 'scripts/vendor.js': /^node_modules/
  9. } },
  10. stylesheets: { joinTo: {
  11. 'styles/app.css': /^resources/
  12. } },
  13. },
  14. plugins: {
  15. babel: {presets: ['latest']},
  16. stylus: {},
  17. postcss: {
  18. processors: [
  19. require('lost')(),
  20. require('autoprefixer')(['last 8 versions']),
  21. require('csswring')()
  22. ]
  23. }
  24. }
  25. };
Add Comment
Please, Sign In to add comment