Skip to content

Integrating other Frameworks

Iuri Matias edited this page Jun 22, 2015 · 2 revisions

Integrating javascript frameworks

e.g to integrate angular

#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.

Clone this wiki locally