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

Commit 1fb70c3

Browse files
committed
🏁 v0.0.6
1 parent d9e3e9e commit 1fb70c3

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.npmignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lib
22
test
33
vendor
44
constants.js
5-
index.js
5+
./index.js
66
webpack.config.js
77
yarn.lock
88
.babelrc

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rembrandt",
3-
"version": "0.0.3",
3+
"version": "0.0.6",
44
"description": "Client- and server-side image comparison library",
55
"main": "build/node/index.js",
66
"repository": {

webpack.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = [{
88
library: 'Rembrandt',
99
libraryTarget: 'umd',
1010
path: path.join(__dirname, 'build'),
11-
filename: 'browser/index.js'
11+
filename: 'browser.js'
1212
},
1313
node: {
1414
fs: 'empty',
@@ -53,7 +53,7 @@ module.exports = [{
5353
library: 'Rembrandt',
5454
libraryTarget: 'umd',
5555
path: path.join(__dirname, 'build'),
56-
filename: 'browser/index.min.js'
56+
filename: 'browser.min.js'
5757
},
5858
node: {
5959
fs: 'empty',
@@ -100,7 +100,7 @@ module.exports = [{
100100
output: {
101101
libraryTarget: 'commonjs2',
102102
path: path.join(__dirname, 'build'),
103-
filename: 'node/index.js'
103+
filename: 'node.js'
104104
},
105105
target: 'node',
106106
externals: ['canvas'],

0 commit comments

Comments
 (0)