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

release/0.2.0 #194

Merged
merged 51 commits into from
Feb 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
82e5e7d
emptied components
marinhoarthur Dec 2, 2021
9aaec26
feat: SpModal component (#143)
Matthews3301 Dec 7, 2021
25754af
New storybook setup
Matthews3301 Dec 7, 2021
30190e9
typo
marinhoarthur Dec 14, 2021
8618ac2
Update index.ts
marinhoarthur Dec 14, 2021
5f321c4
Update index.ts
marinhoarthur Dec 14, 2021
402d5dd
Merge branch 'release/1.0.0' of https://github.com/tendermint/vue int…
Matthews3301 Dec 25, 2021
de1888d
Storybook now working
Matthews3301 Dec 26, 2021
86a6bd0
Refactor
Matthews3301 Dec 26, 2021
07777aa
Gitignore file
Matthews3301 Dec 26, 2021
4a29989
Added typescript
Matthews3301 Dec 27, 2021
e426b4e
Removed navbar
Matthews3301 Dec 27, 2021
553dbdd
repo overall refresh (#157)
marinhoarthur Jan 7, 2022
21f0ba0
SpTx (#158)
marinhoarthur Jan 8, 2022
af58de0
SpNavbar and SpAcc (#156)
Matthews3301 Jan 8, 2022
961d08a
code:format
marinhoarthur Jan 8, 2022
6a34348
--leftover / ++typing
marinhoarthur Jan 8, 2022
efa987d
milestone 1
marinhoarthur Jan 10, 2022
e385793
Create netlify.toml
marinhoarthur Jan 10, 2022
ac2d6d8
Update netlify.toml
marinhoarthur Jan 10, 2022
f31c4e7
m 1
marinhoarthur Jan 10, 2022
4247519
dependencies / 0.2.0
marinhoarthur Jan 10, 2022
a6de4ef
m1
marinhoarthur Jan 10, 2022
991bff6
m1
marinhoarthur Jan 10, 2022
2461dcb
m1
marinhoarthur Jan 10, 2022
ea44cd9
m1
marinhoarthur Jan 10, 2022
a2b2946
m1
marinhoarthur Jan 10, 2022
67a7104
m1
marinhoarthur Jan 10, 2022
8cf473c
m1
marinhoarthur Jan 10, 2022
7e365ca
m1
marinhoarthur Jan 10, 2022
c20ca86
m1
marinhoarthur Jan 10, 2022
af50128
Update netlify.toml
marinhoarthur Jan 10, 2022
b8957b5
v0.2.0-alpha-c20ca865562bfe682645ad7181badf77a68db8d3
marinhoarthur Jan 11, 2022
0b1db60
m1
marinhoarthur Jan 11, 2022
8b9ff04
Merge branch 'release/milestone-01' of github.com:tendermint/vue into…
marinhoarthur Jan 11, 2022
cc905e2
m1
marinhoarthur Jan 11, 2022
b78880f
Profile avatar, wallet account, navbar logo
Matthews3301 Jan 11, 2022
041732a
m1
marinhoarthur Jan 11, 2022
2de44e5
m1
marinhoarthur Jan 11, 2022
aa87fff
Merge conflicts
Matthews3301 Jan 11, 2022
ac1dcf7
Tabs
Matthews3301 Jan 11, 2022
4571469
milestone 01 (#166)
marinhoarthur Jan 14, 2022
def9b8d
regenerated vuex (#175)
marinhoarthur Jan 24, 2022
e5bf4b3
Delete vetur.config.js
marinhoarthur Jan 25, 2022
3183689
milestone-2 (#183)
marinhoarthur Feb 8, 2022
46bced4
housekeeping (#191)
marinhoarthur Feb 9, 2022
decff37
Housekeeping (#192)
marinhoarthur Feb 14, 2022
4264e5d
removed relayers / shrunk wallet (#193)
marinhoarthur Feb 15, 2022
4cacc97
Merge branch 'develop' into release/1.0.0
marinhoarthur Feb 15, 2022
016d680
Delete .env
marinhoarthur Feb 15, 2022
98615be
milestone-3 (#189)
marinhoarthur Feb 16, 2022
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
13 changes: 13 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
node_modules
package-lock.json

packages/**/node_modules
packages/**/build
packages/**/dist
packages/**/lib
packages/**/package-lock.json

packages/template/src/store/

.github
.husky
30 changes: 30 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"env": {
"browser": true,
"node": true
},
"root": true,
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"plugins": ["@typescript-eslint", "simple-import-sort"],
"extends": [
"@vue/typescript/recommended",
"plugin:vue/vue3-recommended",
"prettier"
],
"rules": {
"indent": "off",
"vue/html-self-closing": "off",
"vue/max-attributes-per-line": "off",
"@typescript-eslint/camelcase": "off",
"vue/singleline-html-element-content-newline": "off",
"simple-import-sort/imports": "warn",
"simple-import-sort/exports": "warn",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"prefer-const": "off"
}
}
43 changes: 43 additions & 0 deletions .github/workflows/alpha-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Alpha release & deploy

# Controls when the action will run.
on:
workflow_dispatch:
push:
branches: [ release/* ]


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: 16
registry-url: 'https://registry.npmjs.org'
scope: starport

- name: Publish
run: lerna publish --force-publish --canary --preid alpha-$(git rev-parse HEAD) --dist-tag alpha --yes --no-verify-access
env:
NODE_AUTH_TOKEN: ${{secrets.sp_npm_token}}

- name: Install alpha
run: lerna exec --scope='@starport/template' -- npm i @starport/vue@alpha @starport/vuex@alpha

- name: Build
run: npm run build

- name: Deploy
uses: netlify/actions/cli@master
with:
args: deploy --alias 'alpha'
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}

2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
run: lerna bootstrap

- name: Build
run: lerna run build --scope='{@starport/client-js,@starport/vue,@starport/vuex}'
run: lerna run build --scope='{@starport/vue,@starport/vuex}'
2 changes: 1 addition & 1 deletion .github/workflows/major-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: lerna bootstrap

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

- name: Configure git
run: git config --global user.email "hello@tendermint.com" && git config --global user.name "Lerna CI"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/minor-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Bootstrap
run: lerna bootstrap
- name: Build
run: lerna run build --scope='{@starport/client-js,@starport/vue,@starport/vuex}'
run: lerna run build --scope='{@starport/vue,@starport/vuex}'

- name: Configure git
run: git config --global user.email "hello@tendermint.com" && git config --global user.name "Lerna CI"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/patch-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: lerna bootstrap

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

- name: Configure git
run: git config --global user.email "hello@tendermint.com" && git config --global user.name "Lerna CI"
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +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

- name: Build
run: lerna run build --scope='{@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}}
16 changes: 0 additions & 16 deletions .github/workflows/test-semantic.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,32 @@
.DS_Store
node_modules
/dist
lerna-debug.log
.netlify

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

packages/**/.DS_Store
packages/**/node_modules
packages/**/build
packages/**/dist
packages/**/lib
packages/**/.env.local
packages/**/.env.*.local
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm run code:check
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16.10.0
13 changes: 13 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
node_modules
package-lock.json

packages/**/node_modules
packages/**/build
packages/**/dist
packages/**/lib
packages/**/package-lock.json

packages/template/src/store/

.github
.husky
2 changes: 1 addition & 1 deletion packages/storybook/.prettierrc → .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 160,
"printWidth": 80,
"endOfLine": "auto"
}
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ This monorepo contains packages to simplify frontend development (primarily usin

The included packages are:

* [@starport/client-js](https://github.com/tendermint/vue/tree/develop/packages/client-js)
* [@starport/vuex](https://github.com/tendermint/vue/tree/develop/packages/vuex)
* [@starport/vue](https://github.com/tendermint/vue/tree/develop/packages/vue)
* [App template](https://github.com/tendermint/vue/tree/develop/packages/template)
- [@starport/vuex](https://github.com/tendermint/vue/tree/develop/packages/vuex)
- [@starport/vue](https://github.com/tendermint/vue/tree/develop/packages/vue)
- [App template](https://github.com/tendermint/vue/tree/develop/packages/template)

Browse the READMEs in each package for details.
16 changes: 2 additions & 14 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,5 @@
# Changelog

## `v0.1.57`

### Changed:

- chore: regenerated vuex

# Changelog

## `v0.1.56`

### Fixed:

- adjusted `transpileDependencies` property

## `v0.1.55`

### Features:
Expand All @@ -34,6 +20,7 @@
## `v0.1.53`

### Features:

- new storybook package

### Changed:
Expand All @@ -56,4 +43,5 @@
## `v0.1.50`

### Changed:

- updated cosmjs wallet method signatures
17 changes: 0 additions & 17 deletions lerna-debug.log

This file was deleted.

6 changes: 2 additions & 4 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
{
"packages": [
"packages/*"
],
"version": "0.1.58"
"packages": ["packages/*"],
"version": "0.2.0"
}
4 changes: 4 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[build]
base = "/"
command = ""
publish = "packages/template/dist"
Loading