Skip to content

Commit

Permalink
v2.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
saki7 committed Nov 10, 2017
1 parent 3ba5fcf commit 14d00e9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
}]
],
"plugins": [
"transform-runtime",
"transform-object-assign",
"transform-function-bind",
"transform-runtime",
"transform-class-properties"
"transform-class-properties",
"transform-async-to-generator"
]
}

2 changes: 1 addition & 1 deletion package-lock.json

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

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{
"name": "crsearch",
"version": "2.6.2",
"version": "2.6.3",
"description": "cpprefjp / boostjp searcher",
"main": "dist/js/crsearch.js",
"module": "js/crsearch.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack-dev-server --config webpack.dev.js --host 0.0.0.0",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build"
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
Expand Down
2 changes: 2 additions & 0 deletions webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ module.exports = {
include: [
path.resolve(__dirname, 'js'),
path.resolve(__dirname, 'node_modules', 'nagato'),
path.resolve(__dirname, 'node_modules', 'whatwg-url'),
],
},
{
Expand All @@ -66,6 +67,7 @@ module.exports = {
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'crsearch-vendor',
chunks: ['crsearch'],
minChunks: function(module) {
return isExternal(module);
},
Expand Down

0 comments on commit 14d00e9

Please sign in to comment.