From b34cb028b202cd5d7587aadac00549e92cc5e799 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Mon, 22 Jun 2015 05:59:08 -0400 Subject: [PATCH] Created Integrating other Frameworks (markdown) --- Integrating-other-Frameworks.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Integrating-other-Frameworks.md 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