Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add changelog process and update for releases #64

Merged
merged 2 commits into from
Jun 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
649 changes: 649 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/stencil-ds-output-targets.git"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test": "lerna run test"
"test": "lerna run test",
"changelog": "lerna-changelog",
"publish": "lerna publish"
},
"devDependencies": {
"@stencil/core": "^1.13.0",
"@types/jest": "^25.2.3",
"jest": "^26.0.1",
"lerna": "^3.21.0"
"lerna": "^3.21.0",
"lerna-changelog": "^1.0.1"
},
"dependencies": {
"prettier": "^2.0.5",
Expand Down
4 changes: 2 additions & 2 deletions packages/angular-output-target/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/stencil-ds-plugins.git"
"url": "git+https://github.com/ionic-team/stencil-ds-output-targets.git"
},
"author": "Ionic Team",
"homepage": "https://stenciljs.com/",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionic-team/stencil-ds-plugins/issues"
"url": "https://github.com/ionic-team/stencil-ds-output-targets/issues"
},
"devDependencies": {
"@angular/core": "8.2.14",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "component-library-angular",
"version": "0.0.1",
"description": "",
"private": true,
"description": "Angular specific wrapper for component-library",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ionic-team/ionic.git"
"url": "https://github.com/ionic-team/stencil-ds-output-targets.git"
},
"scripts": {
"build": "npm run build.ng",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
"version": "0.0.1",
"private": true,
"description": "React specific wrapper for component-library",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ionic-team/ionic.git"
"url": "https://github.com/ionic-team/stencil-ds-output-targets.git"
},
"scripts": {
"test": "../../../node_modules/.bin/jest",
Expand Down
11 changes: 8 additions & 3 deletions packages/example-project/component-library/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
{
"name": "component-library",
"version": "0.0.1",
"description": "Stencil Component Starter",
"private": true,
"description": "Stencil Component Library for testing purposes",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ionic-team/stencil-ds-output-targets.git"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
Expand All @@ -28,6 +34,5 @@
"@types/puppeteer": "2.0.1",
"jest-cli": "26.0.1",
"puppeteer": "2.1.1"
},
"license": "MIT"
}
}
4 changes: 2 additions & 2 deletions packages/react-output-target/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/stencil-ds-plugins.git"
"url": "git+https://github.com/ionic-team/stencil-ds-output-targets.git"
},
"author": "Ionic Team",
"homepage": "https://stenciljs.com/",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionic-team/stencil-ds-plugins/issues"
"url": "https://github.com/ionic-team/stencil-ds-output-targets/issues"
},
"peerDependencies": {
"@stencil/core": ">=1.8.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/vue-output-target/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/stencil-ds-plugins.git"
"url": "git+https://github.com/ionic-team/stencil-ds-output-targets.git"
},
"author": "Ionic Team",
"homepage": "https://stenciljs.com/",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionic-team/stencil-ds-plugins/issues"
"url": "https://github.com/ionic-team/stencil-ds-output-targets/issues"
},
"peerDependencies": {
"@stencil/core": ">=1.8.0"
Expand Down