Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Commit

Permalink
🏁 v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
saschagehlich committed Oct 26, 2016
1 parent d9e3e9e commit 1fb70c3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lib
test
vendor
constants.js
index.js
./index.js
webpack.config.js
yarn.lock
.babelrc
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rembrandt",
"version": "0.0.3",
"version": "0.0.6",
"description": "Client- and server-side image comparison library",
"main": "build/node/index.js",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = [{
library: 'Rembrandt',
libraryTarget: 'umd',
path: path.join(__dirname, 'build'),
filename: 'browser/index.js'
filename: 'browser.js'
},
node: {
fs: 'empty',
Expand Down Expand Up @@ -53,7 +53,7 @@ module.exports = [{
library: 'Rembrandt',
libraryTarget: 'umd',
path: path.join(__dirname, 'build'),
filename: 'browser/index.min.js'
filename: 'browser.min.js'
},
node: {
fs: 'empty',
Expand Down Expand Up @@ -100,7 +100,7 @@ module.exports = [{
output: {
libraryTarget: 'commonjs2',
path: path.join(__dirname, 'build'),
filename: 'node/index.js'
filename: 'node.js'
},
target: 'node',
externals: ['canvas'],
Expand Down

0 comments on commit 1fb70c3

Please sign in to comment.