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

Commit e7e8ece

Browse files
committed
Updated configuration files
1 parent 478b2f5 commit e7e8ece

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

.npmignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
assets/
2+
examples/
3+
src/
4+
.babelrc
5+
index.html
6+
webpack.config.js
7+
yarn.lock

package.json

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
2-
"name": "messagist",
3-
"version": "0.1",
2+
"name": "vue-messagist",
3+
"version": "0.1.0",
44
"description": "Configurable interface for conversational user engagement",
5-
"main": "index.js",
5+
"main": "dist/messagist.js",
6+
"files": [
7+
"dist/*.js",
8+
"dist/*.map"
9+
],
610
"repository": "https://github.com/codebryo/messagist.git",
711
"author": "Roman Kuba <[email protected]>",
812
"license": "MIT",

webpack.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ module.exports = {
88
publicPath: '/dist/',
99
filename: 'messagist.js',
1010
library: 'Messagist',
11-
libraryExport: "default",
12-
libraryTarget: 'var'
11+
libraryExport: 'default',
12+
libraryTarget: 'umd'
1313
},
1414
module: {
1515
rules: [

0 commit comments

Comments
 (0)