@lionweb/utilities 0.6.9 → 0.6.10-beta.2
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/README.md +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ It contains utilities on top of the `core` package, such as:
|
|
|
24
24
|
|
|
25
25
|
## Changelog
|
|
26
26
|
|
|
27
|
-
### 0.6.9
|
|
27
|
+
### 0.6.9
|
|
28
28
|
|
|
29
29
|
* Make `withoutAnnotations` _not_ modify the original serialization chunk.
|
|
30
30
|
* (Use the `littoral-templates` package for textualization — of M2s, so far. This is a technical change, not a functional one, except for maybe some extra whitespace.)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lionweb/utilities",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.10-beta.2",
|
|
4
4
|
"description": "LionWeb utilities",
|
|
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
|
"dependencies": {
|
|
18
|
-
"@lionweb/core": "0.6.
|
|
18
|
+
"@lionweb/core": "0.6.10-beta.2",
|
|
19
19
|
"littoral-templates": "0.2.2",
|
|
20
20
|
"nanoid": "4.0.2"
|
|
21
21
|
},
|
|
@@ -23,7 +23,10 @@
|
|
|
23
23
|
"clean": "rm -rf dist/ lionweb-utilities-*.tgz",
|
|
24
24
|
"build": "tsc",
|
|
25
25
|
"lint": "eslint src",
|
|
26
|
+
"pre-release-either": "npm run clean && npm install && npm run build",
|
|
27
|
+
"prerelease": "npm run pre-release-either",
|
|
26
28
|
"release": "npm publish",
|
|
29
|
+
"prerelease-beta": "npm run pre-release-either",
|
|
27
30
|
"release-beta": "npm publish --tag beta"
|
|
28
31
|
}
|
|
29
32
|
}
|