Skip to content

Commit

Permalink
chore: Update deps (#123)
Browse files Browse the repository at this point in the history
* chore: Update deps

* fix: package-locks and flow adjustments

* fix .gitignore

* fix: fix @starport/vue build

* fix: fix netlify build

* fix: remove deprecated option

* fix: Turn prettier errors to warnings

* fix: load entire list

* fix: fix HDWallet options

* fix: add long to deps

* fix: add long typedefs

* fix: Fix null fees for IBC
  • Loading branch information
clockworkgr committed Oct 21, 2021
1 parent eb8a3eb commit 66025e2
Show file tree
Hide file tree
Showing 146 changed files with 178,795 additions and 42,745 deletions.
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)

0 comments on commit 66025e2

Please sign in to comment.