Skip to content

Commit

Permalink
release: 🏹 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pboeder committed Oct 1, 2021
1 parent 679c20e commit 8147095
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 13 deletions.
10 changes: 10 additions & 0 deletions packages/cookie-consent-banner-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.1.0](https://github.com/porscheofficial/cookie-consent-banner/compare/v1.0.0...v1.1.0) (2021-10-01)


### Features

* 🎸 update NOTICE.md ([ac0de58](https://github.com/porscheofficial/cookie-consent-banner/commit/ac0de58631006e4d0fdf2d5fb15252bebf2d6fa1))
20 changes: 14 additions & 6 deletions packages/cookie-consent-banner-react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@porscheofficial/cookie-consent-banner-react",
"license": "MIT",
"version": "1.0.0",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "https://github.com/porscheofficial/cookie-consent-banner",
Expand All @@ -11,9 +11,10 @@
"build:module": "tsc --outDir ./lib/module --sourceMap",
"build:commonjs": "tsc --module commonjs --outDir ./lib/commonjs --sourceMap",
"build": "rimraf ./lib && yarn build:module && yarn build:commonjs",
"test:ci": "yarn eslint:ci",
"eslint:ci": "eslint ./src/index.ts --ext .js,.jsx,.tsx,.ts -f table",
"eslint:fix": "eslint ./src/index.ts --fix --ext .js,.jsx,.tsx,.ts -f table"
"eslint:fix": "eslint ./src/index.ts --fix --ext .js,.jsx,.tsx,.ts -f table",
"test:ci": "yarn eslint:ci",
"release:prepare": "standard-version"
},
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
Expand All @@ -29,16 +30,23 @@
"react": "*",
"react-dom": "*"
},
"standard-version": {
"skip": {
"tag": true,
"commit": true
}
},
"dependencies": {
"@porscheofficial/cookie-consent-banner": "*"
},
"devDependencies": {
"@types/react": "17.0.20",
"@types/react": "17.0.26",
"@types/react-dom": "17.0.9",
"eslint": "^7.32.0",
"eslint": "7.32.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "3.0.2",
"typescript": "^4.4.2"
"standard-version": "9.3.1",
"typescript": "4.4.3"
}
}
10 changes: 10 additions & 0 deletions packages/cookie-consent-banner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.1.0](https://github.com/porscheofficial/cookie-consent-banner/compare/v1.0.0...v1.1.0) (2021-10-01)


### Features

* 🎸 update NOTICE.md ([ac0de58](https://github.com/porscheofficial/cookie-consent-banner/commit/ac0de58631006e4d0fdf2d5fb15252bebf2d6fa1))
22 changes: 15 additions & 7 deletions packages/cookie-consent-banner/package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
{
"name": "@porscheofficial/cookie-consent-banner",
"license": "MIT",
"version": "1.0.0",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "https://github.com/porscheofficial/cookie-consent-banner",
"directory": "packages/cookie-consent-banner"
},
"scripts": {
"build": "stencil build",
"eslint:ci": "eslint ./src/ --ext .js,.jsx,.tsx,.ts -f table",
"eslint:fix": "eslint ./src/ --fix --ext .js,.jsx,.tsx,.ts -f table",
"start": "stencil build --dev --watch --serve",
"generate": "stencil generate",
"release:prepare": "standard-version",
"test": "stencil test --spec --e2e",
"test:watch": "stencil test --spec --e2e --watchAll",
"test:ci": "yarn eslint:ci && stencil test --spec --passWithNoTests",
"eslint:ci": "eslint ./src/ --ext .js,.jsx,.tsx,.ts -f table",
"eslint:fix": "eslint ./src/ --fix --ext .js,.jsx,.tsx,.ts -f table"
"test:ci": "yarn eslint:ci && stencil test --spec --passWithNoTests"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
Expand All @@ -33,16 +34,23 @@
"LICENSE.md",
"NOTICE.md"
],
"standard-version": {
"skip": {
"tag": true,
"commit": true
}
},
"dependencies": {
"@stencil/core": "2.8.0"
},
"devDependencies": {
"@stencil/react-output-target": "0.0.12",
"@stencil/react-output-target": "0.1.0",
"@types/jest": "26.0.24",
"@types/puppeteer": "5.4.4",
"eslint": "^7.32.0",
"eslint": "7.32.0",
"jest": "26.6.3",
"jest-cli": "26.6.3",
"puppeteer": "10.2.0"
"puppeteer": "10.2.0",
"standard-version": "9.3.1"
}
}

0 comments on commit 8147095

Please sign in to comment.