chore: remove lerna-lite due to no patch: support
This commit is contained in:
4
.github/workflows/components.publish.yml
vendored
4
.github/workflows/components.publish.yml
vendored
@@ -1,6 +1,10 @@
|
||||
name: Components Publish
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ develop, main ]
|
||||
paths:
|
||||
- packages/components/**
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
||||
38
.github/workflows/publish.yml
vendored
38
.github/workflows/publish.yml
vendored
@@ -1,38 +0,0 @@
|
||||
name: Publish Components
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ develop, main ]
|
||||
paths:
|
||||
- packages/components/**
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
token: ${{ secrets.CI_PAT_TOKEN }}
|
||||
fetch-depth: 0
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
- name: Set up Ruby
|
||||
uses: ruby/setup-ruby@v1
|
||||
- run: yarn install
|
||||
- run: yarn build
|
||||
- name: Setup git config
|
||||
run: |
|
||||
git config --global user.name "standardci"
|
||||
git config --global user.email "ci@standardnotes.com"
|
||||
- name: Import GPG key
|
||||
uses: crazy-max/ghaction-import-gpg@v4
|
||||
with:
|
||||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||
passphrase: ${{ secrets.PASSPHRASE }}
|
||||
git_user_signingkey: true
|
||||
git_commit_gpgsign: true
|
||||
- run: yarn version-bump
|
||||
@@ -22,7 +22,7 @@
|
||||
"start:server:web": "lerna run start --scope=@standardnotes/web-server",
|
||||
"start:server:web:localhost": "lerna run start:no-binding --scope=@standardnotes/web-server",
|
||||
"prepare": "husky install",
|
||||
"version-bump": "lerna version --loglevel=silly --conventional-commits --yes -m \"chore(release): publish\"",
|
||||
"version-bump": "lerna version --no-push --loglevel=silly --conventional-commits --yes -m \"chore(release): publish\"",
|
||||
"publish-packages": "lerna publish from-git --yes",
|
||||
"reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock",
|
||||
"version": "yarn install --no-immutable && git add yarn.lock"
|
||||
@@ -35,7 +35,6 @@
|
||||
"@types/hoist-non-react-statics/@types/react": "17.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lerna-lite/cli": "^1.5.1",
|
||||
"@standardnotes/config": "^2.4.3",
|
||||
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
||||
"@typescript-eslint/parser": "^5.20.0",
|
||||
|
||||
Reference in New Issue
Block a user