Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cowboy/grunt-commonjs-example
This is example output generated by the "grunt init:commonjs" task.
https://github.com/cowboy/grunt-commonjs-example
Last synced: 30 days ago
JSON representation
This is example output generated by the "grunt init:commonjs" task.
- Host: GitHub
- URL: https://github.com/cowboy/grunt-commonjs-example
- Owner: cowboy
- License: mit
- Created: 2012-03-23T02:39:02.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-04-07T13:01:50.000Z (over 12 years ago)
- Last Synced: 2024-10-14T14:19:07.365Z (2 months ago)
- Language: JavaScript
- Homepage: https://github.com/cowboy/grunt
- Size: 90.8 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# Grunt "init:commonjs" example
This is example output generated by the "grunt init:commonjs" task.
_Note: this repository was generated dynamically using grunt v0.3.8. Instead of
reporting issues here, please report any issues with this repository as
[grunt issues][issues]. Instead of watching or forking this repository,
watch [grunt][grunt] and use the grunt [init task][init]._## Project Creation Transcript
The following is a transcript of the session in which this project and
repository were created. This is not actually a part of the [grunt][grunt]
"init:commonjs" template, this session transcript was added afterwards. The
text after the `$` are the commands that were executed, and everything else is
program output. If you want to see the repository exactly as it was created by
grunt, view [the previous commit][prev].Want to learn more? Check [grunt][grunt] out.
[grunt]: https://github.com/cowboy/grunt
[issues]: https://github.com/cowboy/grunt/issues
[init]: https://github.com/cowboy/grunt/blob/master/docs/task_init.md
[expect]: https://github.com/cowboy/grunt/blob/master/dev/init.exp
[prev]: https://github.com/cowboy/grunt-commonjs-example/tree/HEAD~1Note that this entire build process is automated by a rather complex [expect
script][expect], which is used to automate grunt in order to facilitate the
creation of this and other [init task][init] example repositories.```
$ mkdir grunt-commonjs-example && cd grunt-commonjs-example$ git init
git remote add origin [email protected]:cowboy/grunt-commonjs-example.git
Initialized empty Git repository in /private/tmp/grunt-commonjs-example/.git/$ git remote add origin [email protected]:cowboy/grunt-commonjs-example.git
$ grunt init:commonjs
Running "init:commonjs" (init) task
This task will create one or more files in the current directory, based on the
environment and the answers to a few questions. Note that answering "?" to any
question will show question-specific help and answering "none" to most questions
will leave its value blank.Please answer the following:
[?] Project name (grunt-commonjs-example)
[?] Description (The best project ever.) This is example output generated by the "grunt init:commonjs" task.
[?] Version (0.1.0)
[?] Project git repository (git://github.com/cowboy/grunt-commonjs-example.git)
[?] Project homepage (https://github.com/cowboy/grunt-commonjs-example)
[?] Project issues tracker (https://github.com/cowboy/grunt-commonjs-example/issues)
[?] Licenses (MIT)
[?] Author name ("Cowboy" Ben Alman)
[?] Author email (none)
[?] Author url (http://benalman.com/)
[?] What versions of node does it run on? (*)
[?] Main module/entry point (lib/grunt-commonjs-example)
[?] Npm test command (grunt test)
[?] Do you need to make any changes to the above before continuing? (y/N)Writing .gitignore...OK
Writing grunt.js...OK
Writing lib/grunt-commonjs-example.js...OK
Writing README.md...OK
Writing test/grunt-commonjs-example_test.js...OK
Writing LICENSE-MIT...OKInitialized from template "commonjs".
Done, without errors.
$ tree
.
├── LICENSE-MIT
├── README.md
├── grunt.js
├── lib
│ └── grunt-commonjs-example.js
├── package.json
└── test
└── grunt-commonjs-example_test.js2 directories, 6 files
$ grunt
Running "lint:files" (lint) task
Lint free.Running "test:files" (test) task
Testing grunt-commonjs-example_test.js.OK
>> 1 assertions passed (1ms)Running "concat:dist" (concat) task
File "dist/grunt-commonjs-example.js" created.Running "min:dist" (min) task
File "dist/grunt-commonjs-example.min.js" created.
Uncompressed size: 293 bytes.
Compressed size: 208 bytes gzipped (250 bytes minified).Done, without errors.
$ tree
.
├── LICENSE-MIT
├── README.md
├── dist
│ ├── grunt-commonjs-example.js
│ └── grunt-commonjs-example.min.js
├── grunt.js
├── lib
│ └── grunt-commonjs-example.js
├── package.json
└── test
└── grunt-commonjs-example_test.js3 directories, 8 files
$ git add .
$ git commit -m 'Committing example "grunt init:commonjs" task output.'
[master (root-commit) 295c791] Committing example "grunt init:commonjs" task output.
9 files changed, 239 insertions(+), 0 deletions(-)
create mode 100644 .gitignore
create mode 100644 LICENSE-MIT
create mode 100644 README.md
create mode 100644 dist/grunt-commonjs-example.js
create mode 100644 dist/grunt-commonjs-example.min.js
create mode 100644 grunt.js
create mode 100644 lib/grunt-commonjs-example.js
create mode 100644 package.json
create mode 100644 test/grunt-commonjs-example_test.js```
## License
Copyright (c) 2012 "Cowboy" Ben Alman
Licensed under the MIT license.