Skip to content

Commit

Permalink
chore(release): publish
Browse files Browse the repository at this point in the history
  • Loading branch information
bigbigDreamer committed Oct 30, 2022
1 parent c7ce765 commit 04c8d3f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
"updateInternalDependents": "always"
},
"ignore": ["website"]
"ignore": ["website", "pangu-demo", "webpack-demo", "ssr-demo"]
}
2 changes: 1 addition & 1 deletion example/pangu-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dependencies": {
"@aktiv/launcher": "^1.5.0",
"@montagejs/pangu": "workspace:^0.1.3",
"@montagejs/pangu-plugin-route-preload": "workspace:^0.0.2",
"@montagejs/pangu-plugin-route-preload": "workspace:^0.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/pangu/pangu-plugin-route-preload/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @montagejs/pangu-plugin-route-preload

## 0.0.3

### Patch Changes

- [`c7ce765`](https://github.com/bigbigDreamer/montage/commit/c7ce765) Thanks [@bigbigDreamer](https://github.com/bigbigDreamer)! - typro: change type import way

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/pangu/pangu-plugin-route-preload/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@montagejs/pangu-plugin-route-preload",
"version": "0.0.2",
"version": "0.0.3",
"description": "react pangu for react router",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/pangu/pangu-plugin-route-preload/src/provider.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createContext, type FC, useEffect } from 'react';
import { pluginStore } from './store';
import type { LoadableComponent } from 'react-loadable';
import type { PanGuRouteObject } from '@montagejs/pangu/es/router';
import type { PanGuRouteObject } from '@montagejs/pangu';
import type { PluginStore } from './store';

export const PluginContext = createContext<PluginStore>(pluginStore);
Expand Down

0 comments on commit 04c8d3f

Please sign in to comment.