diff --git a/Integrating-other-Frameworks.md b/Integrating-other-Frameworks.md new file mode 100644 index 0000000..6aff49e --- /dev/null +++ b/Integrating-other-Frameworks.md @@ -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). \ No newline at end of file