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

chore: Update deps #123

Merged
merged 12 commits into from Oct 21, 2021
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
50 changes: 25 additions & 25 deletions .github/workflows/main.yml
@@ -1,25 +1,25 @@
name: Lerna Build Check

on:
pull_request:
branches: [ develop ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'

- name: Bootstrap monorepo
run: lerna bootstrap --hoist

- name: Build
run: lerna run build --scope='{@starport/client-js,@starport/vue,@starport/vuex}'
name: Lerna Build Check
on:
pull_request:
branches: [ develop ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
- name: Bootstrap monorepo
run: lerna bootstrap
- name: Build
run: lerna run build --scope='{@starport/client-js,@starport/vue,@starport/vuex}'
80 changes: 40 additions & 40 deletions .github/workflows/major-release.yml
@@ -1,40 +1,40 @@
name: Publish new major version

# Controls when the action will run.
on:
workflow_dispatch:

jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
scope: starport

- name: Bootstrap
run: lerna bootstrap --hoist

- name: Build
run: lerna run build --scope='{@starport/client-js,@starport/vue,@starport/vuex}'

- name: Configure git
run: git config --global user.email "hello@tendermint.com" && git config --global user.name "Lerna CI"

- name: Create Release
run: 'lerna version major --yes -m "chore(release): publish %s"'

- name: Publish
run: lerna publish from-git --yes --no-verify-access

env:
GH_TOKEN: ${{ secrets.sp_gh_token }}
GITHUB_TOKEN: ${{ secrets.sp_gh_token }}
NODE_AUTH_TOKEN: ${{secrets.sp_npm_token}}
name: Publish new major version
# Controls when the action will run.
on:
workflow_dispatch:
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
scope: starport
- name: Bootstrap
run: lerna bootstrap
- name: Build
run: lerna run build --scope='{@starport/client-js,@starport/vue,@starport/vuex}'
- name: Configure git
run: git config --global user.email "hello@tendermint.com" && git config --global user.name "Lerna CI"
- name: Create Release
run: 'lerna version major --yes -m "chore(release): publish %s"'
- name: Publish
run: lerna publish from-git --yes --no-verify-access
env:
GH_TOKEN: ${{ secrets.sp_gh_token }}
GITHUB_TOKEN: ${{ secrets.sp_gh_token }}
NODE_AUTH_TOKEN: ${{secrets.sp_npm_token}}
79 changes: 39 additions & 40 deletions .github/workflows/minor-release.yml
@@ -1,40 +1,39 @@
name: Publish new minor version

# Controls when the action will run.
on:
workflow_dispatch:

jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
scope: starport

- name: Bootstrap
run: lerna bootstrap --hoist

- name: Build
run: lerna run build --scope='{@starport/client-js,@starport/vue,@starport/vuex}'

- name: Configure git
run: git config --global user.email "hello@tendermint.com" && git config --global user.name "Lerna CI"

- name: Create Release
run: 'lerna version minor --yes -m "chore(release): publish %s"'

- name: Publish
run: lerna publish from-git --yes --no-verify-access

env:
GH_TOKEN: ${{ secrets.sp_gh_token }}
GITHUB_TOKEN: ${{ secrets.sp_gh_token }}
NODE_AUTH_TOKEN: ${{secrets.sp_npm_token}}
name: Publish new minor version

# Controls when the action will run.
on:
workflow_dispatch:

jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
scope: starport

- name: Bootstrap
run: lerna bootstrap
- name: Build
run: lerna run build --scope='{@starport/client-js,@starport/vue,@starport/vuex}'

- name: Configure git
run: git config --global user.email "hello@tendermint.com" && git config --global user.name "Lerna CI"

- name: Create Release
run: 'lerna version minor --yes -m "chore(release): publish %s"'

- name: Publish
run: lerna publish from-git --yes --no-verify-access

env:
GH_TOKEN: ${{ secrets.sp_gh_token }}
GITHUB_TOKEN: ${{ secrets.sp_gh_token }}
NODE_AUTH_TOKEN: ${{secrets.sp_npm_token}}
80 changes: 40 additions & 40 deletions .github/workflows/patch-release.yml
@@ -1,40 +1,40 @@
name: Publish new patch version

# Controls when the action will run.
on:
workflow_dispatch:

jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
scope: starport

- name: Bootstrap
run: lerna bootstrap --hoist

- name: Build
run: lerna run build --scope='{@starport/client-js,@starport/vue,@starport/vuex}'

- name: Configure git
run: git config --global user.email "hello@tendermint.com" && git config --global user.name "Lerna CI"

- name: Create Release
run: 'lerna version patch --yes -m "chore(release): publish %s"'

- name: Publish
run: lerna publish from-git --yes --no-verify-access

env:
GH_TOKEN: ${{ secrets.sp_gh_token }}
GITHUB_TOKEN: ${{ secrets.sp_gh_token }}
NODE_AUTH_TOKEN: ${{secrets.sp_npm_token}}
name: Publish new patch version
# Controls when the action will run.
on:
workflow_dispatch:
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
scope: starport
- name: Bootstrap
run: lerna bootstrap
- name: Build
run: lerna run build --scope='{@starport/client-js,@starport/vue,@starport/vuex}'
- name: Configure git
run: git config --global user.email "hello@tendermint.com" && git config --global user.name "Lerna CI"
- name: Create Release
run: 'lerna version patch --yes -m "chore(release): publish %s"'
- name: Publish
run: lerna publish from-git --yes --no-verify-access
env:
GH_TOKEN: ${{ secrets.sp_gh_token }}
GITHUB_TOKEN: ${{ secrets.sp_gh_token }}
NODE_AUTH_TOKEN: ${{secrets.sp_npm_token}}
68 changes: 34 additions & 34 deletions .github/workflows/publish.yml
@@ -1,34 +1,34 @@
name: Build and publish pre-release

# Controls when the action will run.
on:
push:
branches: [ develop ]

workflow_dispatch:

jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
scope: starport

- name: Bootstrap
run: lerna bootstrap --hoist

- name: Build
run: lerna run build --scope='{@starport/client-js,@starport/vue,@starport/vuex}'

- name: Publish
run: lerna publish --canary --preid beta --dist-tag next --yes --no-verify-access
env:
NODE_AUTH_TOKEN: ${{secrets.sp_npm_token}}
name: Build and publish pre-release
# Controls when the action will run.
on:
push:
branches: [ develop ]
workflow_dispatch:
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: 'https://registry.npmjs.org'
scope: starport
- name: Bootstrap
run: lerna bootstrap
- name: Build
run: lerna run build --scope='{@starport/client-js,@starport/vue,@starport/vuex}'
- name: Publish
run: lerna publish --canary --preid beta --dist-tag next --yes --no-verify-access
env:
NODE_AUTH_TOKEN: ${{secrets.sp_npm_token}}
17 changes: 17 additions & 0 deletions lerna-debug.log
@@ -0,0 +1,17 @@
0 silly argv {
0 silly argv _: [ 'bootstrap' ],
0 silly argv hoist: true,
0 silly argv lernaVersion: '4.0.0',
0 silly argv '$0': 'lerna'
0 silly argv }
1 notice cli v4.0.0
2 verbose rootPath /media/clockwork/Projects/Tendermint/Repositories/vue
3 error Error: Invalid tag name "1^.42.1": Tags may not have any characters that encodeURIComponent encodes.
3 error at invalidTagName (/media/clockwork/Projects/Tendermint/Repositories/vue/node_modules/npm-package-arg/npa.js:89:15)
3 error at fromRegistry (/media/clockwork/Projects/Tendermint/Repositories/vue/node_modules/npm-package-arg/npa.js:343:13)
3 error at Function.resolve (/media/clockwork/Projects/Tendermint/Repositories/vue/node_modules/npm-package-arg/npa.js:80:12)
3 error at /media/clockwork/Projects/Tendermint/Repositories/vue/node_modules/@lerna/package-graph/index.js:66:30
3 error at Array.forEach (<anonymous>)
3 error at /media/clockwork/Projects/Tendermint/Repositories/vue/node_modules/@lerna/package-graph/index.js:60:38
3 error at Map.forEach (<anonymous>)
3 error at new PackageGraph (/media/clockwork/Projects/Tendermint/Repositories/vue/node_modules/@lerna/package-graph/index.js:49:10)