8000 feat: Updated vue library and template by clockworkgr · Pull Request #292 · ignite/web · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

feat: Updated vue library and template #292

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

Merged
merged 23 commits into from
Jun 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
ad9cf6d
feat: Updated vue library and template
clockworkgr Jun 26, 2025
f269b87
chore: Remove deprecated react lib and template
clockworkgr Jun 26, 2025
a1280c6
feat: build pipeline
clockworkgr Jun 26, 2025
e79261a
chore(release): publish v1.0.0
clockworkgr Jun 26, 2025
94c9bde
feat: avoid pnpm command conflict
clockworkgr Jun 26, 2025
1ed6b5c
feat: update workflows
clockworkgr Jun 26, 2025
87f6258
feat: update logo
clockworkgr Jun 26, 2025
3d5f211
chore(release): publish v1.0.1
clockworkgr Jun 26, 2025
1766fc6
chore: Check for updates
clockworkgr Jun 27, 2025
615c4dc
chore(release): publish v1.0.2
clockworkgr Jun 27, 2025
721a54b
chore: Fix Assets components
clockworkgr Jun 27, 2025
2fa2286
chore: fix publishing scripts
clockworkgr Jun 27, 2025
fd243b9
fix: script typos
clockworkgr Jun 27, 2025
a780015
chore: adjust prepublish scripts
clockworkgr Jun 27, 2025
baab1d8
chore(release): Bumped @ignt/vue-lib version in template
clockworkgr Jun 27, 2025
7e3750e
chore(release): publish v1.0.3
clockworkgr Jun 27, 2025
c41315c
chore: Pass build errors
clockworkgr Jun 27, 2025
5eb95bf
chore(release): Bumped @ignt/vue-lib version in template
clockworkgr Jun 27, 2025
e71b6f6
chore(release): publish v1.0.4
clockworkgr Jun 27, 2025
b99b735
chore: Export types
clockworkgr Jun 27, 2025
7c14ad7
chore(release): Bumped @ignt/vue-lib version in template
clockworkgr Jun 27, 2025
9a5207d
chore(release): publish v1.0.5
clockworkgr Jun 27, 2025
2cae77d
fix: clear up template build errors
clockworkgr Jun 27, 2025
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
33 changes: 12 additions & 21 deletions .github/workflows/alpha-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,32 +15,23 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
registry-url: 'https://registry.npmjs.org'
scope: ignt
- uses: pnpm/action-setup@v4
with:
version: 10

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

- name: Build
run: npm run build
run: pnpm build

- name: Publish
run: npm run alpha
env:
NODE_AUTH_TOKEN: ${{secrets.sp_npm_token}}

- name: Install Ignite CLI
run: 'curl https://get.ignite.com/cli! | bash'

- name: Install alpha
run: lerna exec --scope='@starport/template' -- npm i @starport/vue@alpha @starport/vuex@alpha
run: pnpm 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 }}

GH_TOKEN: ${{ secrets.sp_gh_token }}
GITHUB_TOKEN: ${{ secrets.sp_gh_token }}
NODE_AUTH_TOKEN: ${{secrets.sp_npm_token}}
9 changes: 6 additions & 3 deletions .github/workflows/major-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,21 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
registry-url: 'https://registry.npmjs.org'
scope: ignt
- uses: pnpm/action-setup@v4
with:
version: 10

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

- name: Build
run: npm run build
run: pnpm build

- name: Publish
run: npm run major
run: pnpm major

env:
GH_TOKEN: ${{ secrets.sp_gh_token }}
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/minor-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,21 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
registry-url: 'https://registry.npmjs.org'
scope: ignt
- uses: pnpm/action-setup@v4
with:
version: 10

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

- name: Build
run: npm run build
run: pnpm build

- name: Publish
run: npm run minor
run: pnpm minor

env:
GH_TOKEN: ${{ secrets.sp_gh_token }}
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/patch-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,20 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
registry-url: 'https://registry.npmjs.org'
scope: ignt

- uses: pnpm/action-setup@v4
with:
version: 10
- name: Configure git
run: git config --global user.email "hello@ignite.com" && git config --global user.name "Lerna CI"

- name: Build
run: npm run build
run: pnpm build

- name: Publish
run: npm run patch
run: pnpm patchrel

env:
GH_TOKEN: ${{ secrets.sp_gh_token }}
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"packages": [
"packages/*"
],
"version": "0.6.1"
"version": "1.0.5"
}
9 changes: 9 additions & 0 deletions major.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const semver = require('semver');
const fs = require('fs');
const lerna = require('./lerna.json');
const templatePkg = require('./packages/vue-template/package.json');
const bumped = semver.parse(lerna.version, { loose: true }).inc('major').version;
templatePkg.devDependencies['@ignt/vue-library'] = `^${bumped}`;

fs.writeFileSync('./packages/vue-template/package.json', JSON.stringify(templatePkg, null, 2));
console.log(`Bumped @ignt/vue-library to version ${bumped} in vue-template package.json`);
9 changes: 9 additions & 0 deletions minor.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const semver = require('semver');
const fs = require('fs');
const lerna = require('./lerna.json');
const templatePkg = require('./packages/vue-template/package.json');
const bumped = semver.parse(lerna.version, { loose: true }).inc('minor').version;
templatePkg.devDependencies['@ignt/vue-library'] = `^${bumped}`;

fs.writeFileSync('./packages/vue-template/package.json', JSON.stringify(templatePkg, null, 2));
console.log(`Bumped @ignt/vue-library to version ${bumped} in vue-template package.json`);
Loading
0