1

我是 Grunt/Yeoman 的新手,我有一个现有的应用程序,其中包含 40 多个 Coffeescript 文件,如下所示:

scripts/
  lib/
    ...
  common/
    ...
  util/
    ...
  app/
    views/
    models/
      A.cofffee
      B.cofffee
      C.cofffee

我想按特定顺序连接它们并编译成一个文件。

所以我想说“按此顺序编译”

scripts/lib/some_superclass.coffee
scripts/lib/*
common/*
util/app/views/*
util/app/models/some_model_that_needs_to_be_required_first.coffee
util/app/models/*

在 Grunt/Yeoman 项目中如何解决这个问题?(我真的不想把每个文件都拼出来)

4

1 回答 1

7

在您的GruntFile.js中,您应该有coffee如下步骤:

// Coffee to JS compilation
coffee: {
  compile: {
    files: {
      'temp/scripts/*.js': 'app/scripts/**/*.coffee' 
    },
    options: {
      basePath: 'app/scripts'
    }
  }
},
...

通常,您应该能够:

    files: {
      '/path/to/destination/index.js': [
        'scripts/lib/some_superclass.coffee', 
        'scripts/lib/**/*.coffee', 
        'common/**/*.coffee',
        #...
      ] 
    },
于 2013-01-04T09:05:00.387 回答