Created Integrating other Frameworks (markdown)

Iuri Matias 2015-06-22 05:59:08 -04:00
parent 7ed94703b0
commit b34cb028b2
1 changed files with 24 additions and 0 deletions

@ -0,0 +1,24 @@
### Integrating javascript frameworks
e.g to integrate angular
```Coffeescript
#Gruntfile.coffee
module.exports = (grunt) ->
grunt.loadNpmTasks "embark-framework"
grunt.initConfig(
@initEmbarkConfig(
files:
js:
src: [
"app/js/angular.min.js",
"app/js/**/*.js"
]
...
```
### Meteor
Future versions will have better support for Meteor. For now see this [workaround](Releasing-with-Meteor).