Malliapi, Chris (UK - London)
2015-04-11 11a101be90304578848393577593359825cbf013
fixing grunt coffeescript issue (remove coffeescript test) and adding html plugin to ake examples work from root directory
1 files deleted
3 files modified
22 ■■■■■ changed files
examples/README.md 2 ●●● patch | view | raw | blame | history
examples/webpack.config.js 7 ●●●● patch | view | raw | blame | history
package.json 1 ●●●● patch | view | raw | blame | history
test/coffee/DateTimePickerHoursSpec.jsx.coffee 12 ●●●●● patch | view | raw | blame | history
examples/README.md
@@ -3,4 +3,4 @@
1. Clone this repo
2. Run npm install
3. Start dev server with `npm run examples`
4. Browse `http://localhost:8080
4. Browse `http://localhost:8080'
examples/webpack.config.js
@@ -1,3 +1,5 @@
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
  entry: {
@@ -31,6 +33,9 @@
    stats: {colors: true},
  },
  devtool: "eval-source-map"
  devtool: "eval-source-map",
  plugins: [new HtmlWebpackPlugin({
    template: __dirname + '/basic/index.html'
  })]
};
package.json
@@ -40,6 +40,7 @@
    "grunt-contrib-watch": "~0.5.3",
    "grunt-react": "~0.10.0",
    "grunt-shell": "~0.6.4",
    "html-webpack-plugin": "^1.1.0",
    "jsx-loader": "^0.12.2",
    "react": ">=0.12",
    "react-tools": "^0.12.2",
test/coffee/DateTimePickerHoursSpec.jsx.coffee
File was deleted