@lionweb/json-diff 0.6.13-beta.5 → 0.7.0-beta.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.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.6.13
3
+ ## 0.7.0
4
+
5
+ Initial creation and publication of this package, as an extraction `@lionweb/validation`.
4
6
 
package/README.md CHANGED
@@ -12,9 +12,7 @@ An NPM package that can be added to a Node.js/NPM codebase as follows:
12
12
  ```shell
13
13
  $ npm add @lionweb/json-diff
14
14
  ```
15
- It contains:
16
-
17
- * Utilities ...
15
+ It computes differences between LionWeb serialization chunks.
18
16
 
19
17
 
20
18
  ## Development
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lionweb/json-diff",
3
- "version": "0.6.13-beta.5",
3
+ "version": "0.7.0-beta.0",
4
4
  "description": "Find diff between LionWeb JSON chunks",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,7 +15,7 @@
15
15
  "url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
16
16
  },
17
17
  "scripts": {
18
- "clean": "rm -rf dist/ lionweb-json-diff-*.tgz",
18
+ "clean": "rm -rf dist/ node_modules/ lionweb-json-diff-*.tgz",
19
19
  "build": "tsc",
20
20
  "lint": "eslint src",
21
21
  "pre-release-either": "npm run clean && npm install && npm run build",
@@ -25,7 +25,7 @@
25
25
  "release-beta": "npm publish --tag beta"
26
26
  },
27
27
  "dependencies": {
28
- "@lionweb/json": "0.6.13-beta.5",
29
- "@lionweb/json-utils": "0.6.13-beta.5"
28
+ "@lionweb/json": "0.7.0-beta.0",
29
+ "@lionweb/json-utils": "0.7.0-beta.0"
30
30
  }
31
31
  }