Skip to content

Commit

Permalink
release: 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ruleeeer committed Nov 22, 2021
1 parent fb989e9 commit 18c07d6
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,19 @@ jobs:
with:
node-version: '14'
registry-url: 'https://registry.npmjs.org'
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 6

- name: Install dependencies
run: yarn
run: pnpm install

- name: Build
run: yarn build
run: pnpm build

- name: Test
run: yarn test
run: pnpm test

- name: Create Release for Tag
id: release_tag
Expand Down
14 changes: 14 additions & 0 deletions packages/lib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## [1.0.5](https://github.com/originjs/vite-plugin-federation/compare/v1.0.4...v1.0.5) (2021-11-22)


### Bug Fixes

* 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))


### Features

* switch to pnpm ([#98](https://github.com/originjs/vite-plugin-federation/issues/98)) ([3ec352a](https://github.com/originjs/vite-plugin-federation/commit/3ec352a1f62b833fac5bd2e03bf7e7cd6e2ad387))



## [1.0.4](https://github.com/originjs/vite-plugin-federation/compare/v1.0.3...v1.0.4) (2021-11-18)


Expand Down
2 changes: 1 addition & 1 deletion packages/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@originjs/vite-plugin-federation",
"version": "1.0.4",
"version": "1.0.5",
"description": "A Vite plugin which support Module Federation.",
"main": "dist/index.js",
"module": "dist/index.es.js",
Expand Down

0 comments on commit 18c07d6

Please sign in to comment.