@knotx/plugins-history 0.0.1 → 0.0.3

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.
package/dist/index.d.cts CHANGED
@@ -1,5 +1,4 @@
1
- import { DataManager, IData, DataOperation } from '@knotx/data';
2
- import { BasePlugin } from '@knotx/core';
1
+ import { DataManager, IData, DataOperation, BasePlugin } from '@knotx/core';
3
2
 
4
3
  declare module '@knotx/core' {
5
4
  interface PluginData {
package/dist/index.d.mts CHANGED
@@ -1,5 +1,4 @@
1
- import { DataManager, IData, DataOperation } from '@knotx/data';
2
- import { BasePlugin } from '@knotx/core';
1
+ import { DataManager, IData, DataOperation, BasePlugin } from '@knotx/core';
3
2
 
4
3
  declare module '@knotx/core' {
5
4
  interface PluginData {
package/dist/index.d.ts CHANGED
@@ -1,5 +1,4 @@
1
- import { DataManager, IData, DataOperation } from '@knotx/data';
2
- import { BasePlugin } from '@knotx/core';
1
+ import { DataManager, IData, DataOperation, BasePlugin } from '@knotx/core';
3
2
 
4
3
  declare module '@knotx/core' {
5
4
  interface PluginData {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knotx/plugins-history",
3
3
  "type": "module",
4
- "version": "0.0.1",
4
+ "version": "0.0.3",
5
5
  "description": "History Plugin for Knotx",
6
6
  "author": "boenfu",
7
7
  "license": "MIT",
@@ -12,7 +12,8 @@
12
12
  "directory": "packages/plugins-history"
13
13
  },
14
14
  "publishConfig": {
15
- "access": "public"
15
+ "access": "public",
16
+ "registry": "https://registry.npmjs.org/"
16
17
  },
17
18
  "sideEffects": false,
18
19
  "exports": {
@@ -30,15 +31,14 @@
30
31
  ],
31
32
  "dependencies": {
32
33
  "rxjs": "^7.8.1",
33
- "@knotx/data": "0.0.1",
34
- "@knotx/core": "0.0.1",
35
- "@knotx/decorators": "0.0.1"
34
+ "@knotx/decorators": "0.0.3",
35
+ "@knotx/core": "0.0.3"
36
36
  },
37
37
  "devDependencies": {
38
- "@knotx/eslint-config": "0.0.1",
39
- "@knotx/build-config": "0.0.1",
40
- "@knotx/jsx": "0.0.1",
41
- "@knotx/typescript-config": "0.0.1"
38
+ "@knotx/build-config": "0.0.3",
39
+ "@knotx/eslint-config": "0.0.3",
40
+ "@knotx/jsx": "0.0.3",
41
+ "@knotx/typescript-config": "0.0.3"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "unbuild --failOnWarn=false",