Skip to content

Commit 916e5ee

Browse files
committed
Merge pull request mixi-inc#26 from kakusuke/fix-package-json-for-windows
Windows環境でnpmコマンドが動かない問題の修正
2 parents 32a4249 + 7af2f65 commit 916e5ee

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.bowerrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"cwd": "public/"
3+
}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"description": "Training course repository for JavaScript by mixi",
55
"main": "index.js",
66
"scripts": {
7-
"postinstall": "(cd public; $(npm bin)/bower install)",
8-
"help": "$(npm bin)/gulp help",
9-
"serve": "$(npm bin)/gulp serve",
10-
"presentation": "$(npm bin)/reveal-md README.md --theme solarized --separator '^\\n\\n\\n' --verticalSeparator '^\\n\\n'"
7+
"postinstall": "bower install",
8+
"help": "gulp help",
9+
"serve": "gulp serve",
10+
"presentation": "reveal-md README.md --theme solarized --separator '^\\n\\n\\n' --verticalSeparator '^\\n\\n'"
1111
},
1212
"repository": {
1313
"type": "git",

0 commit comments

Comments
 (0)