react-runtime-pipe 0.2.1 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -520,11 +520,10 @@ import {
520
520
  retry,
521
521
  auth,
522
522
  } from 'react-runtime-pipe/middleware'
523
+ import { globalEvents } from 'react-runtime-pipe/react'
523
524
 
524
525
  import { ApiServiceToken } from './tokens'
525
526
 
526
- import { globalEvents } from './events'
527
-
528
527
  export const saveUserAction =
529
528
  defineAction({
530
529
  name: 'save-user',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-runtime-pipe",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "description": "A backend-style runtime for React with middleware, DI, plugins, and structured action execution.",
5
5
  "license": "MIT",
6
6
  "author": "Delpi.Kye",
@@ -15,11 +15,6 @@
15
15
  "import": "./build/esm/index.js",
16
16
  "require": "./build/cjs/index.cjs"
17
17
  },
18
- "./react": {
19
- "types": "./build/react/index.d.ts",
20
- "import": "./build/esm/react/index.js",
21
- "require": "./build/cjs/react/index.js"
22
- },
23
18
  "./middleware": {
24
19
  "types": "./build/middleware/index.d.ts",
25
20
  "import": "./build/esm/middleware/index.js",
@@ -29,6 +24,11 @@
29
24
  "types": "./build/plugin/index.d.ts",
30
25
  "import": "./build/esm/plugin/index.js",
31
26
  "require": "./build/cjs/plugin/index.js"
27
+ },
28
+ "./react": {
29
+ "types": "./build/react/index.d.ts",
30
+ "import": "./build/esm/react/index.js",
31
+ "require": "./build/cjs/react/index.js"
32
32
  }
33
33
  },
34
34
  "files": [