Skip to content

Commit

Permalink
dependency resolution update
Browse files Browse the repository at this point in the history
  • Loading branch information
Zolmeister committed Feb 12, 2015
1 parent 8c4b88b commit 7606b78
Show file tree
Hide file tree
Showing 4 changed files with 169 additions and 10 deletions.
10 changes: 5 additions & 5 deletions Gulpfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ karma = require('karma').server
mocha = require 'gulp-mocha'
rename = require 'gulp-rename'
nodemon = require 'gulp-nodemon'
webpack = require 'gulp-webpack'
gulpWebpack = require 'gulp-webpack'
coffeelint = require 'gulp-coffeelint'
runSequence = require 'run-sequence'
RewirePlugin = require 'rewire-webpack'
webpackSource = require 'webpack'
webpack = require 'webpack'
clayLintConfig = require 'clay-coffeescript-style-guide'

karmaConf =
Expand Down Expand Up @@ -80,7 +80,7 @@ gulp.task 'test:phantom', ['scripts:test'], (cb) ->

gulp.task 'scripts:test', ->
gulp.src paths.rootTests
.pipe webpack
.pipe gulpWebpack
module:
postLoaders: [
{ test: /\.coffee$/, loader: 'transform/cacheable?envify' }
Expand Down Expand Up @@ -136,7 +136,7 @@ gulp.task 'clean:dist', (cb) ->
# init.coffee --> dist/js/bundle.min.js
gulp.task 'scripts:prod', ->
gulp.src paths.root
.pipe webpack
.pipe gulpWebpack
module:
postLoaders: [
{ test: /\.coffee$/, loader: 'transform/cacheable?envify' }
Expand All @@ -156,7 +156,7 @@ gulp.task 'scripts:prod', ->
'bower.json', ['main']
)
)
new webpackSource.optimize.UglifyJsPlugin()
new webpack.optimize.UglifyJsPlugin()
]
resolve:
root: [path.join(__dirname, 'bower_components')]
Expand Down
3 changes: 1 addition & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"private": true,
"dependencies": {
"fetch": "0.3.0",
"normalize.styl": "~3.0.2",
"zorium-paper": "zorium/zorium-paper"
"normalize.styl": "~3.0.2"
}
}
160 changes: 159 additions & 1 deletion npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,16 @@
"helmet": "^0.6.0",
"json-loader": "^0.5.1",
"karma": "^0.12.17",
"lodash": "^2.4.1",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-2.4.1.tgz",
"pm2": "^0.12.3",
"promiz": "^1.0.0",
"rewire-webpack": "^0.2.0",
"run-sequence": "^0.3.2",
"style-loader": "^0.8.1",
"stylus-loader": "^0.5.0",
"transform-loader": "^0.2.1",
"webpack": "^1.4.11"
"webpack": "^1.5.0",
"zorium": "^0.6.8",
"zorium-paper": "^0.1.0"
}
}

0 comments on commit 7606b78

Please sign in to comment.