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

fix(infra): release commands #7978

Merged
merged 4 commits into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 2 additions & 2 deletions .github/workflows/release-rc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: yarn --frozen-lockfile

- name: Build
run: yarn build
run: yarn ci:releasebuild

- name: Publish
env:
Expand All @@ -32,5 +32,5 @@ jobs:
npm config set //registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}
git config user.name "${{ secrets.UI5_WEBCOMP_BOT_NAME }}"
git config user.email "${{ secrets.UI5_WEBCOMP_BOT_EMAIL }}"
yarn lerna version --conventional-prerelease --force-publish --yes --exact --create-release github
yarn lerna version --conventional-prerelease --force-publish --yes --exact --create-release github
yarn lerna publish from-git --yes
2 changes: 1 addition & 1 deletion packages/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"generateAPI": "nps generateAPI",
"bundle": "nps build.bundle",
"test": "nps test",
"prepublishOnly": "npm run clean && npm run build"
"prepublishOnly": "tsc"
},
"dependencies": {
"lit-html": "^2.0.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/fiori/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"bundle": "nps build.bundle",
"test": "wc-dev test",
"create-ui5-element": "wc-create-ui5-element",
"prepublishOnly": "npm run build"
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/icons-business-suite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"clean": "wc-dev clean",
"build": "wc-dev build",
"generate": "nps generate",
"prepublishOnly": "npm run clean && npm run build"
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/icons-tnt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"clean": "wc-dev clean",
"build": "wc-dev build",
"generate": "nps generate",
"prepublishOnly": "npm run clean && npm run build"
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"clean": "wc-dev clean",
"generate": "nps generate",
"build": "wc-dev build",
"prepublishOnly": "npm run clean && npm run build"
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/localization/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"build": "nps build",
"generate": "nps generate",
"copyGenerated": "nps copyGenerated",
"prepublishOnly": "npm run clean && npm run build"
"prepublishOnly": "tsc"
},
"devDependencies": {
"@openui5/sap.ui.core": "1.116.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/main/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"test:suite-1": "wc-dev test-suite-1",
"test:suite-2": "wc-dev test-suite-2",
"create-ui5-element": "wc-create-ui5-element",
"prepublishOnly": "npm run build"
"prepublishOnly": "tsc"
},
"exports": {
"./.port": "./.port",
Expand Down
2 changes: 1 addition & 1 deletion packages/theming/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"copyGenerated": "nps copyGenerated",
"start": "nps start",
"verify": "node ./lib/verify-vars/index.js",
"prepublishOnly": "npm run clean && npm run build"
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
Expand Down
156 changes: 78 additions & 78 deletions packages/tools/package.json
Original file line number Diff line number Diff line change
@@ -1,81 +1,81 @@
{
"name": "@ui5/webcomponents-tools",
"version": "1.21.0-rc.0",
"description": "UI5 Web Components: webcomponents.tools",
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"private": false,
"keywords": [
"openui5",
"sapui5",
"ui5"
],
"scripts": {},
"bin": {
"wc-dev": "bin/dev.js",
"wc-create-ui5-element": "bin/create-ui5-element.js"
},
"repository": {
"type": "git",
"url": "https://github.com/SAP/ui5-webcomponents.git",
"directory": "packages/tools"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@wdio/cli": "^7.19.7",
"@wdio/dot-reporter": "^7.19.7",
"@wdio/local-runner": "^7.19.7",
"@wdio/mocha-framework": "^7.19.7",
"@wdio/spec-reporter": "^7.19.7",
"@wdio/static-server-service": "^7.19.5",
"chai": "^4.3.4",
"child_process": "^1.0.2",
"chokidar": "^3.5.1",
"chokidar-cli": "^3.0.0",
"command-line-args": "^5.1.1",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"cssnano": "^6.0.1",
"escodegen": "^2.0.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"esprima": "^4.0.1",
"getopts": "^2.3.0",
"glob": "^7.1.6",
"glob-parent": "^6.0.2",
"globby": "^13.1.1",
"handlebars": "^4.7.7",
"is-port-reachable": "^3.1.0",
"jsdoc": "^3.6.6",
"json-beautify": "^1.1.1",
"mkdirp": "^1.0.4",
"nps": "^5.10.0",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.0.2",
"postcss-selector-parser": "^6.0.10",
"prompts": "^2.4.2",
"properties-reader": "^2.2.0",
"recursive-readdir": "^2.2.2",
"resolve": "^1.20.0",
"rimraf": "^3.0.2",
"slash": "3.0.0",
"vite": "^4.4.9",
"wdio-chromedriver-service": "^7.3.2",
"zx": "^7.2.3"
},
"peerDependencies": {
"chromedriver": "*",
"typescript": "^4.9.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
"name": "@ui5/webcomponents-tools",
"version": "1.21.0-rc.0",
"description": "UI5 Web Components: webcomponents.tools",
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"private": false,
"keywords": [
"openui5",
"sapui5",
"ui5"
],
"scripts": {},
"bin": {
"wc-dev": "bin/dev.js",
"wc-create-ui5-element": "bin/create-ui5-element.js"
},
"repository": {
"type": "git",
"url": "https://github.com/SAP/ui5-webcomponents.git",
"directory": "packages/tools"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@wdio/cli": "^7.19.7",
"@wdio/dot-reporter": "^7.19.7",
"@wdio/local-runner": "^7.19.7",
"@wdio/mocha-framework": "^7.19.7",
"@wdio/spec-reporter": "^7.19.7",
"@wdio/static-server-service": "^7.19.5",
"chai": "^4.3.4",
"child_process": "^1.0.2",
"chokidar": "^3.5.1",
"chokidar-cli": "^3.0.0",
"command-line-args": "^5.1.1",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"cssnano": "^6.0.1",
"escodegen": "^2.0.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"esprima": "^4.0.1",
"getopts": "^2.3.0",
"glob": "^7.1.6",
"glob-parent": "^6.0.2",
"globby": "^13.1.1",
"handlebars": "^4.7.7",
"is-port-reachable": "^3.1.0",
"jsdoc": "^3.6.6",
"json-beautify": "^1.1.1",
"mkdirp": "^1.0.4",
"nps": "^5.10.0",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.0.2",
"postcss-selector-parser": "^6.0.10",
"prompts": "^2.4.2",
"properties-reader": "^2.2.0",
"recursive-readdir": "^2.2.2",
"resolve": "^1.20.0",
"rimraf": "^3.0.2",
"slash": "3.0.0",
"vite": "^4.4.9",
"wdio-chromedriver-service": "^7.3.2",
"zx": "^7.2.3"
},
"peerDependencies": {
"chromedriver": "*",
"typescript": "^4.9.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"yargs": "^17.5.1"
}
},
"devDependencies": {
"yargs": "^17.5.1"
}
}