Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use local grunt #65

Merged
merged 3 commits into from Feb 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -18,7 +18,6 @@ before_install:
- export GEMDIR=$(rvm gemdir)

install:
- travis_retry npm install -g grunt-cli
- travis_retry npm install
- travis_retry gem install --no-document "jekyll:~>3.0.0" "rouge:~>1.10" "sass:~>3.4"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -58,7 +58,7 @@ Please file a GitHub issue to [report a bug](https://github.com/connors/photon/i
1. Install node dependencies: `npm install`.
2. Open the example app: `npm start`.

Modifying source Sass files? Open a second Terminal tab and run `grunt` to kick off a build the compiled `photon.css`.
Modifying source Sass files? Open a second Terminal tab and run `npm run build` to kick off a build of the compiled `photon.css`.

## Versioning

Expand Down
4 changes: 3 additions & 1 deletion package.json
Expand Up @@ -18,13 +18,15 @@
"url": "https://github.com/connors/photon/issues"
},
"scripts": {
"start": "electron dist/template-app"
"start": "electron dist/template-app",
"build": "grunt"
},
"license": "MIT",
"devDependencies": {
"electron-prebuilt": "^0.33.3",
"grunt": "~0.4.5",
"grunt-banner": "~0.5.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-compress": "~0.13.0",
"grunt-contrib-concat": "~0.5.1",
Expand Down