From 65cf95c441aaf9789e00ad68ba0b5fd2bbda4501 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Wed, 17 Jun 2020 20:49:00 +0400 Subject: Recovered build Signed-off-by: Valentin Popov --- .gitignore | 8 ++------ package-lock.json | 6 ++++++ package.json | 1 + rollup.config.js | 3 +-- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 232ea35..507d360 100644 --- a/.gitignore +++ b/.gitignore @@ -198,9 +198,5 @@ $RECYCLE.BIN/ ### Project ### # Resulting code -/_tslib-*.js -/default-*.js -/javascript.js -/typescript.js -/vue-javascript.js -/vue-typescript.js +/*.js + diff --git a/package-lock.json b/package-lock.json index 88af739..88bd254 100644 --- a/package-lock.json +++ b/package-lock.json @@ -90,6 +90,12 @@ "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", "dev": true }, + "@types/node": { + "version": "14.0.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.13.tgz", + "integrity": "sha512-rouEWBImiRaSJsVA+ITTFM6ZxibuAlTuNOCyxVbwreu6k6+ujs7DfnU9o+PShFhET78pMBl3eH+AGSI5eOTkPA==", + "dev": true + }, "@types/normalize-package-data": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", diff --git a/package.json b/package.json index 6ecf7d1..2471197 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "devDependencies": { "@rollup/plugin-json": "^4.1.0", "@rollup/plugin-typescript": "^4.1.2", + "@types/node": "^14.0.13", "@typescript-eslint/eslint-plugin": "^2.26.0", "@typescript-eslint/parser": "^2.26.0", "eslint": "^6.8.0", diff --git a/rollup.config.js b/rollup.config.js index d22bb39..4f5794e 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -1,6 +1,6 @@ -import { terser } from "rollup-plugin-terser"; import json from "@rollup/plugin-json"; import typescript from "@rollup/plugin-typescript"; +import { terser } from "rollup-plugin-terser"; module.exports = { input: { @@ -25,7 +25,6 @@ module.exports = { output: { comments: false, }, - sourcemap: false, }), ], }; -- cgit v1.2.3