-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #237 from edx/talbs/use-npm
Use Node Package Manager (npm)
- Loading branch information
Showing
16 changed files
with
130 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
.gitignore | ||
404.html | ||
_config.yml | ||
_data | ||
_includes | ||
_layouts | ||
_posts | ||
_site | ||
pldoc | ||
about.md | ||
bower_components | ||
CNAME | ||
examples | ||
favicon.ico | ||
gulp | ||
gulpfile.js | ||
index.html | ||
node_modules | ||
package.json | ||
public |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "edx-pattern-library", | ||
"version": "0.6.0", | ||
"version": "0.7.0", | ||
"authors": [ | ||
"edX UX Team <[email protected]>" | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,33 @@ | ||
{ | ||
"name": "edx-ux-pattern-library", | ||
"version": "0.2.0", | ||
"name": "edx-pattern-library", | ||
"version": "0.7.0", | ||
"author": "edX UX Team <[email protected]>", | ||
"license": "Apache-2.0", | ||
"description": "Gulp and Jekyll front end workflow with common tasks for edX's UX Pattern Library site", | ||
"description": "The (working) Visual, UI, and Front End Styleguide for edX Apps", | ||
"keywords": [ | ||
"atomic design", | ||
"edx", | ||
"open edx", | ||
"patterns", | ||
"pattern library", | ||
"UI starter" | ||
], | ||
"homepage": "http://ux.edx.org", | ||
"main": "_settings.scss", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/edx/ux-pattern-library.git" | ||
}, | ||
"dependencies": { | ||
"animate.css": "^3.4.0", | ||
"bi-app-sass": "^1.1.0", | ||
"bourbon": "^4.2.6", | ||
"breakpoint-sass": "^2.6.1", | ||
"jquery": "^1.11.1", | ||
"requirejs": "^2.1.22", | ||
"requirejs-plugins": "^1.0.2", | ||
"susy": "^2.2.9" | ||
}, | ||
"devDependencies": { | ||
"browser-sync": "*", | ||
"del": "*", | ||
|
@@ -19,7 +40,7 @@ | |
"gulp-imagemin": "*", | ||
"gulp-minify-css": "*", | ||
"gulp-notify": "*", | ||
"gulp-rename": "^1.2.2", | ||
"gulp-rename": "*", | ||
"gulp-sass": "*", | ||
"gulp-sourcemaps": "*", | ||
"gulp-uglify": "*", | ||
|
@@ -28,6 +49,12 @@ | |
"lodash": "*", | ||
"merge-stream": "*", | ||
"require-dir": "*", | ||
"run-sequence": "*" | ||
"run-sequence": "*", | ||
"susy": "^2.2.9" | ||
}, | ||
"scripts": { | ||
"production": "gulp build-production", | ||
"gulp": "gulp", | ||
"development": "gulp build-development" | ||
} | ||
} |
Oops, something went wrong.