Skip to content

Commit 18c07d6

Browse files
committed
release: 1.0.5
1 parent fb989e9 commit 18c07d6

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

.github/workflows/publish.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,19 @@ jobs:
1515
with:
1616
node-version: '14'
1717
registry-url: 'https://registry.npmjs.org'
18+
- name: Install pnpm
19+
uses: pnpm/action-setup@v2
20+
with:
21+
version: 6
22+
1823
- name: Install dependencies
19-
run: yarn
24+
run: pnpm install
25+
2026
- name: Build
21-
run: yarn build
27+
run: pnpm build
28+
2229
- name: Test
23-
run: yarn test
30+
run: pnpm test
2431

2532
- name: Create Release for Tag
2633
id: release_tag

packages/lib/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## [1.0.5](https://github.com/originjs/vite-plugin-federation/compare/v1.0.4...v1.0.5) (2021-11-22)
2+
3+
4+
### Bug Fixes
5+
6+
* shared import fails if shared library name contains '@' or '/'(serve mode) ([#100](https://github.com/originjs/vite-plugin-federation/issues/100)) ([fb989e9](https://github.com/originjs/vite-plugin-federation/commit/fb989e94301ce8dc3b87bca603c3759cd86714b1))
7+
8+
9+
### Features
10+
11+
* switch to pnpm ([#98](https://github.com/originjs/vite-plugin-federation/issues/98)) ([3ec352a](https://github.com/originjs/vite-plugin-federation/commit/3ec352a1f62b833fac5bd2e03bf7e7cd6e2ad387))
12+
13+
14+
115
## [1.0.4](https://github.com/originjs/vite-plugin-federation/compare/v1.0.3...v1.0.4) (2021-11-18)
216

317

packages/lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@originjs/vite-plugin-federation",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "A Vite plugin which support Module Federation.",
55
"main": "dist/index.js",
66
"module": "dist/index.es.js",

0 commit comments

Comments
 (0)