Compare commits

...

2 Commits

Author SHA1 Message Date
cb575d2427 1.0.6 2019-04-30 08:42:55 +02:00
d6ad2797cb fix(core): update 2019-04-30 08:42:55 +02:00
3 changed files with 4 additions and 4 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tsbundle",
"version": "1.0.5",
"version": "1.0.6",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tsbundle",
"version": "1.0.5",
"version": "1.0.6",
"private": false,
"description": "a bundler using rollup for painless bundling of web projects",
"main": "dist/index.js",

View File

@ -7,9 +7,9 @@ import json from 'rollup-plugin-json'
const pkg = require('./package.json')
export default {
input: `src/index.ts`,
input: `ts_web/index.ts`,
output: {
file: 'ts/index.ts',
file: 'dist/bundle.js',
format: 'es',
sourcemap: true
},