npm -> yarn

This commit is contained in:
RainLoop Team 2016-12-15 02:06:40 +03:00
parent 0e9cffd657
commit 20eff3a49a
9 changed files with 5116 additions and 4881 deletions

View file

@ -50,7 +50,7 @@ module.exports = function(publicPath, pro, es6) {
loaders: [
{
test: /\.js$/,
loader: 'babel',
loader: 'babel-loader',
include: [devPath],
options: !es6 ? {
cacheDirectory: true,
@ -110,12 +110,12 @@ module.exports = function(publicPath, pro, es6) {
},
{
test: /\.(html|css)$/,
loader: 'raw',
loader: 'raw-loader',
include: [devPath]
},
{
test: /\.json$/,
loader: 'json',
loader: 'json-loader',
include: [devPath]
}
]