From a5a7287fa5e2e4ab47ba361ebb5156e639682176 Mon Sep 17 00:00:00 2001 From: ziga Date: Thu, 17 Sep 2020 10:10:13 +0200 Subject: [PATCH] Add dist-custom-elements-bundle --- package-lock.json | 8 ++++---- package.json | 6 +++--- stencil.config.ts | 3 +++ 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index 19694c3..d483c5e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "caly", - "version": "0.5.0", + "version": "0.6.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -991,9 +991,9 @@ } }, "@types/jest": { - "version": "26.0.13", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.13.tgz", - "integrity": "sha512-sCzjKow4z9LILc6DhBvn5AkIfmQzDZkgtVVKmGwVrs5tuid38ws281D4l+7x1kP487+FlKDh5kfMZ8WSPAdmdA==", + "version": "26.0.14", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.14.tgz", + "integrity": "sha512-Hz5q8Vu0D288x3iWXePSn53W7hAjP0H7EQ6QvDO9c7t46mR0lNOLlfuwQ+JkVxuhygHzlzPX+0jKdA3ZgSh+Vg==", "dev": true, "requires": { "jest-diff": "^25.2.1", diff --git a/package.json b/package.json index 61032fe..266d05d 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,9 @@ { "name": "caly", - "version": "0.5.0", + "version": "0.6.0", "description": "Caly is a small calendar!", "main": "dist/index.cjs.js", - "module": "dist/index.js", + "module": "dist/custom-elements/index.js", "types": "dist/types/index.d.ts", "collection": "dist/collection/collection-manifest.json", "collection:main": "dist/collection/index.js", @@ -20,7 +20,7 @@ }, "devDependencies": { "@stencil/core": "^2.0.3", - "@types/jest": "26.0.13", + "@types/jest": "26.0.14", "@types/puppeteer": "3.0.2", "cntdys": "^0.3.2", "jest": "26.4.2", diff --git a/stencil.config.ts b/stencil.config.ts index 0cf43b4..a997cc5 100644 --- a/stencil.config.ts +++ b/stencil.config.ts @@ -7,6 +7,9 @@ export const config: Config = { type: 'dist', esmLoaderPath: '../loader', }, + { + type: 'dist-custom-elements-bundle', + }, { type: 'docs-readme', strict: true,