Skip to content

Commit

Permalink
package scss
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusandra committed Nov 18, 2016
1 parent a51748f commit 69732da
Show file tree
Hide file tree
Showing 3 changed files with 5,089 additions and 21 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -14,3 +14,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Moved React & Moment from dependencies to peerDependencies #53 by @meikoudras
- Fix resizing when inside DIV #47 by @semargal
- Fix demo for IE11 #44 by @lucidlemon
- Package a .css file, not a .scss file as previously done. @mariusandra
42 changes: 21 additions & 21 deletions package.json
Expand Up @@ -10,7 +10,7 @@
"build:dev": "echo 'DEV - BUILD' && webpack --config webpack.config.js",
"build:prod": "echo 'PROD - BUILD' && webpack --config webpack.config.prod.js",
"release": "npm run build && babel src --out-dir build && cp README.md build/ && node scripts/release.js",
"module": "./node_modules/.bin/babel src --out-dir modules && cp src/lib/*.scss modules/lib/",
"module": "./node_modules/.bin/babel src --out-dir modules && sass src/lib/Timeline.scss:modules/lib/Timeline.css && sed -i '.bak' 's/Timeline\\.scss/Timeline\\.css/g' modules/lib/Timeline.js && rm modules/lib/Timeline.js.bak",
"lint": "eslint --ext .js,.jsx src",
"lintfix": "eslint --ext .js,.jsx src --fix",
"upgrade:patch": "npm version patch",
Expand Down Expand Up @@ -52,38 +52,38 @@
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "~6.7.5",
"babel-eslint": "^6.0.2",
"babel-core": "~6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "~6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "~0.23.1",
"es5-shim": "~4.4.1",
"eslint": "^2.7.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-react": "^3.16.1",
"eslint-plugin-standard": "^1.3.2",
"css-loader": "~0.26.0",
"es5-shim": "~4.5.9",
"eslint": "^3.10.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"jasmine": "~2.4.1",
"jasmine-core": "~2.4.1",
"karma": "~0.13.19",
"karma-jasmine": "~0.3.6",
"karma-phantomjs-launcher": "~0.2.3",
"jasmine": "~2.5.2",
"jasmine-core": "~2.5.2",
"karma": "~1.3.0",
"karma-jasmine": "~1.0.2",
"karma-phantomjs-launcher": "~1.0.2",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~1.7.0",
"karma-webpack": "~1.8.0",
"moment": "^2.11.1",
"node-sass": "^3.4.2",
"react": "^15.0.1",
"react-addons-perf": "^15.0.1",
"react-dom": "^15.0.1",
"react-hot-loader": "^1.3.0",
"react-hot-loader": "^3.0.0-beta.6",
"rimraf": "^2.5.0",
"sass-loader": "~3.1.2",
"sass-loader": "~4.0.2",
"style-loader": "~0.13.0",
"webpack": "~1.12.11",
"webpack-dev-server": "~1.14.1"
"webpack": "~1.13.3",
"webpack-dev-server": "~1.16.2"
}
}

0 comments on commit 69732da

Please sign in to comment.