Skip to content

Commit a1f455a

Browse files
Merge pull request #47 from peterpeterparker/build/bump-dependencies-custom-bundle
build: bump dependencies and output custom elements bundle
2 parents b9e9b50 + 35fffb4 commit a1f455a

File tree

4 files changed

+70
-41
lines changed

4 files changed

+70
-41
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
<a name="7.2.0"></a>
2+
3+
# [7.1.0](https://github.com/peterpeterparker/web-social-share/compare/v7.1.0...v7.2.0) (2021-06-06)
4+
5+
### Build
6+
7+
- output custom elements as a single bundle (`dist-custom-elements-bundle`)
8+
- bump dependencies
9+
110
<a name="7.1.0"></a>
211

312
# [7.1.0](https://github.com/peterpeterparker/web-social-share/compare/v7.0.0...v7.1.0) (2021-02-21)

package-lock.json

Lines changed: 52 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-social-share",
3-
"version": "7.1.0",
3+
"version": "7.2.0",
44
"description": "A Web Component to share urls and text on social networks",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.js",
@@ -23,12 +23,12 @@
2323
},
2424
"dependencies": {},
2525
"devDependencies": {
26-
"@stencil/core": "^2.4.0",
26+
"@stencil/core": "^2.6.0",
2727
"@stencil/postcss": "^2.0.0",
2828
"@stencil/sass": "^1.4.1",
29-
"autoprefixer": "^10.2.4",
30-
"husky": "^5.0.9",
31-
"prettier": "^2.2.1",
29+
"autoprefixer": "^10.2.6",
30+
"husky": "^6.0.0",
31+
"prettier": "^2.3.1",
3232
"pretty-quick": "^3.1.0"
3333
},
3434
"repository": {

stencil.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import {Config} from '@stencil/core';
22

33
import {sass} from '@stencil/sass';
44
import {postcss} from '@stencil/postcss';
5+
// @ts-ignore
56
import autoprefixer from 'autoprefixer';
67

78
export const config: Config = {
@@ -14,6 +15,9 @@ export const config: Config = {
1415
type: 'www',
1516
baseUrl: 'http://websocialshare.com',
1617
serviceWorker: null
18+
},
19+
{
20+
type: 'dist-custom-elements-bundle',
1721
}
1822
],
1923
plugins: [

0 commit comments

Comments
 (0)