Skip to content

Instantly share code, notes, and snippets.

@matt-bailey
Created April 26, 2013 13:36
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 matt-bailey/5467426 to your computer and use it in GitHub Desktop.
Save matt-bailey/5467426 to your computer and use it in GitHub Desktop.
Output when running 'grunt --force'
>> Local Npm module "grunt-mocha" not found. Is it installed?
Running "jshint:all" (jshint) task
>> 4 files lint free.
Warning: Task "mocha" not found. Used --force, continuing.
Running "clean:dist" (clean) task
Running "useminPrepare:html" (useminPrepare) task
Going through app/index.html to update the config
Looking for build script HTML comment blocks
Found a block:
<!-- build:js scripts/vendor/modernizr.js -->
<script src="components/modernizr/modernizr.js"></script>
<!-- endbuild -->
Updating config with the following assets:
- app/components/modernizr/modernizr.js
Found a block:
<!-- build:js scripts/main.js -->
<script data-main="scripts/main" src="components/requirejs/require.js"></script>
<!-- endbuild -->
Updating config with the following assets:
- dist/scripts/main.js
Configuration is now:
cssmin:
{ dist:
{ files:
{ '<%= yeoman.dist %>/styles/main.css':
[ '.tmp/styles/{,*/}*.css',
'app/styles/{,*/}*.css' ] } } }
concat:
{ 'dist/scripts/vendor/modernizr.js': [ 'app/components/modernizr/modernizr.js' ],
'dist/scripts/main.js': [ 'dist/scripts/main.js' ] }
uglify:
{ 'dist/scripts/vendor/modernizr.js': 'dist/scripts/vendor/modernizr.js',
'dist/scripts/main.js': 'dist/scripts/main.js',
'dist/components/requirejs/require.js': 'app/components/requirejs/require.js' }
requirejs:
{ dist:
{ options:
{ baseUrl: 'app/scripts',
optimize: 'none',
preserveLicenseComments: false,
useStrict: true,
wrap: true,
name: 'main',
out: 'dist/scripts/main.js',
mainConfigFile: 'app/scripts/main.js' } } }
Running "concurrent:dist" (concurrent) task
>> Local Npm module "grunt-mocha" not found. Is it installed?
Running "htmlmin:dist" (htmlmin) task
File dist/404.html created.
File dist/index.html created.
Done, without errors.
>> Local Npm module "grunt-mocha" not found. Is it installed?
Running "coffee:dist" (coffee) task
File .tmp/scripts/hello.js created.
Running "coffee:test" (coffee) task
Done, without errors.
>> Local Npm module "grunt-mocha" not found. Is it installed?
Running "imagemin:dist" (imagemin) task
✔ app/images/glyphicons-halflings.png (already optimized)
✔ app/images/glyphicons-halflings-white.png (already optimized)
Done, without errors.
>> Local Npm module "grunt-mocha" not found. Is it installed?
Running "svgmin:dist" (svgmin) task
Done, without errors.
>> Local Npm module "grunt-mocha" not found. Is it installed?
Running "compass:dist" (compass) task
directory .tmp/styles/
create .tmp/styles/main.css
Done, without errors.
Running "requirejs:dist" (requirejs) task
>> RequireJS optimizer finished
Uncompressed size: 330392 bytes.
Compressed size: 91020 bytes gzipped.
Running "cssmin:dist" (cssmin) task
File dist/styles/main.css created.
Running "concat:dist/scripts/vendor/modernizr.js" (concat) task
File "dist/scripts/vendor/modernizr.js" created.
Running "concat:dist/scripts/main.js" (concat) task
File "dist/scripts/main.js" created.
Running "uglify:dist/scripts/vendor/modernizr.js" (uglify) task
File "dist/scripts/vendor/modernizr.js" created.
Running "uglify:dist/scripts/main.js" (uglify) task
File "dist/scripts/main.js" created.
Running "uglify:dist/components/requirejs/require.js" (uglify) task
File "dist/components/requirejs/require.js" created.
Running "copy:dist" (copy) task
Copied 3 files
Running "rev:dist" (rev) task
dist/scripts/main.js >> 01d39df5.main.js
dist/scripts/vendor/modernizr.js >> 0e15c528.modernizr.js
dist/styles/main.css >> 863337a4.main.css
dist/images/glyphicons-halflings-white.png >> 5d462625.glyphicons-halflings-white.png
dist/images/glyphicons-halflings.png >> 9cc6609b.glyphicons-halflings.png
Running "usemin:html" (usemin) task
Processing as HTML - dist/404.html
Update the HTML to reference our concat/min/revved script files
Update the HTML with the new css filenames
Update the HTML with the new img filenames
Update the HTML with data-main tags
Update the HTML with the data tags
Update the HTML with background imgs, case there is some inline style
Update the HTML with anchors images
Update the HTML with reference in input
Processing as HTML - dist/index.html
Update the HTML to reference our concat/min/revved script files
<script src="scripts/vendor/modernizr.js" changed to <script src="scripts/vendor/0e15c528.modernizr.js"
Update the HTML with the new css filenames
<link rel="stylesheet" href="styles/main.css" changed to <link rel="stylesheet" href="styles/863337a4.main.css"
Update the HTML with the new img filenames
Update the HTML with data-main tags
data-main="scripts/main.js" changed to data-main="scripts/01d39df5.main"
Update the HTML with the data tags
Update the HTML with background imgs, case there is some inline style
Update the HTML with anchors images
Update the HTML with reference in input
Running "usemin:css" (usemin) task
Processing as CSS - dist/styles/863337a4.main.css
Update the CSS with new img filenames
url(../images/glyphicons-halflings.png) changed to url(../images/9cc6609b.glyphicons-halflings.png)
url(../images/glyphicons-halflings-white.png) changed to url(../images/5d462625.glyphicons-halflings-white.png)
Done, but with warnings.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment