Skip to content

Instantly share code, notes, and snippets.

@takuhou
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takuhou/89b887c0f710d7d3be67 to your computer and use it in GitHub Desktop.
Save takuhou/89b887c0f710d7d3be67 to your computer and use it in GitHub Desktop.
Yeomanで作るAngular.jsのプロジェクト ref: http://qiita.com/takuhou/items/58daa13ce80382220b58
Yeoman 1.4.2
bower 1.3.12
grunt-cli v0.1.13
grunt v0.4.5
Error anguler
You don't seem to have a generator with the name anguler installed.
You can see available generators with npm search yeoman-generator and then install them with npm install [name].
To see the 15 registered generators run yo with the `--help` option.
grunt serve
Running "serve" task
Running "clean:server" (clean) task
Running "wiredep:app" (wiredep) task
Warning: ENOENT, no such file or directory '/Users/takuhou/Desktop/project/github/test/app/bower.json' Use --force to continue.
Aborted due to warnings.
Execution Time (2015-01-19 23:41:09 UTC)
loading tasks 3ms ▇▇▇ 2%
clean:server 4ms ▇▇▇▇ 3%
wiredep:app 133ms ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 94%
Total 142ms
163 // Automatically inject Bower components into the app
164 wiredep: {
165 // options: {
166 // cwd: '<%= yeoman.app %>'
167 // },
168 app: {
169 src: ['<%= yeoman.app %>/index.html'],
170 ignorePath: /\.\.\//
171 },
172 sass: {
173 src: ['<%= yeoman.app %>/styles/{,*/}*.{scss,sass}'],
174 ignorePath: /(\.\.\/){1,2}bower_components\//
175 }
176 },
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment