Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tools/cornerstone-cli/src/bin/cstone
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ function doTask( command, options ) {
}
}

// 코너스톤 리파지토리를 기본으로 참조하도록 설정
grunt.file.copy( __dirname + '/../template/.jamrc', '.jamrc' );

// 모든 패키지를 설치하도록 설정
if ( _.contains( options, '--fullpackage' ) )
grunt.file.copy( __dirname + '/../template/fullpackage/package.json', './src/package.json' );
Expand Down
19 changes: 0 additions & 19 deletions tools/cornerstone-cli/src/bin/jamrc-updator

This file was deleted.

14 changes: 6 additions & 8 deletions tools/cornerstone-cli/src/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
{
"name": "cornerstone-cli",
"description": "Cornerstone Framework의 Command Line Interface",
"version": "1.0.0",
"version": "1.0.1",
"author": "손혁진 <hjson@prandy.com>",
"dependencies": {
"grunt": "~0.4.1",
"underscore": "~1.5.1"
"underscore": "~1.5.1",
"jamjs": "~0.2.17",
"grunt-cli": "~0.1.11"
},
"bin": {
"cstone": "bin/cstone",
"jamrc-updator": "bin/jamrc-updator"
"cstone": "bin/cstone"
},
"preferGlobal": true,
"scripts": {
"install": "npm install -g jamjs && jamrc-updator && npm install -g grunt-cli"
}
"preferGlobal": true
}