module in package, v0.6.1

This commit is contained in:
Matteo Manzinello 2019-05-28 19:20:39 +02:00
parent fcc6172243
commit 371a3b3879
5 changed files with 8 additions and 5 deletions

2
dist/mailgo.js vendored
View File

@ -1,6 +1,6 @@
"use strict";
var V = "0.6.0";
var V = "0.6.1";
var MAILTO = "mailto:"; // mailgo style (gulp)
var mailgoCSS = document.createElement("style");

2
dist/mailgo.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "mailgo",
"version": "0.6.0",
"version": "0.6.1",
"description": "a different mailto",
"scripts": {
"build": "gulp && webpack"
@ -10,6 +10,7 @@
"url": "git+https://github.com/manzinello/mailgo.git"
},
"main": "./mailgo.js",
"module": "./mailgo.js",
"keywords": [
"mailto",
"mail"

View File

@ -5,6 +5,8 @@ module.exports = {
entry: "./dist/mailgo.min.js",
output: {
filename: "mailgo.js",
path: path.resolve(__dirname)
path: path.resolve(__dirname),
library: "mailgo",
libraryTarget: "umd"
}
};