Skip to content
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #42 from pcgrenier/patch-1
Browse files Browse the repository at this point in the history
Update chapter06-a-shot-at-templating.md
  • Loading branch information
paulmillr committed Aug 6, 2016
2 parents 830f317 + 5005fd2 commit 36de023
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions content/en/chapter06-a-shot-at-templating.md
Expand Up @@ -26,19 +26,21 @@ Now let’s tell Brunch to add the resulting modules in our app’s JS build, wi

```javascript
module.exports = {
files: {
javascripts: {joinTo:
'app.js': /^app/,
'libraries.js': /^(?!app)/
},
stylesheets: {joinTo: 'app.css'},
templates: {joinTo: 'app.js'}
},
npm: {
globals: {
jade: 'jade/runtime'
files: {
javascripts: {
joinTo: {
'app.js': '/^app/',
'libraries.js': '/^(?!app)/'
},
stylesheets: { joinTo: 'app.css' },
templates: { joinTo: 'app.js' }
},
npm: {
globals: {
jade: 'jade/runtime'
}
}
}
}
}
```

Expand Down

0 comments on commit 36de023

Please sign in to comment.