Skip to content

Commit

Permalink
prepare release of core@0.6.6, utilities@0.6.6, cli@0.6.7 (no validat…
Browse files Browse the repository at this point in the history
…ion@0.6.3)

  + auto-fix package.json-s
  • Loading branch information
dslmeinte committed Jun 19, 2024
1 parent 3fb9c57 commit a70b8e7
Show file tree
Hide file tree
Showing 10 changed files with 76 additions and 58 deletions.
56 changes: 33 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "lionweb-typescript",
"version": "0.6.6-beta.0",
"version": "0.6.6",
"description": "LionWeb core for {Java|Type}Script",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/LionWeb-io/lionweb-typescript.git"
"url": "git+https://github.com/LionWeb-io/lionweb-typescript.git"
},
"bugs": {
"url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
Expand Down
10 changes: 5 additions & 5 deletions packages/artifacts/package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"name": "@lionweb/artifacts",
"version": "0.6.5-beta.0",
"version": "0.6.5",
"description": "LionWeb core for {Java|Type}Script",
"private": true,
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/LionWeb-io/lionweb-typescript.git"
"url": "git+https://github.com/LionWeb-io/lionweb-typescript.git"
},
"bugs": {
"url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
},
"devDependencies": {
"@lionweb/core": "0.6.6-beta.0",
"@lionweb/test": "0.6.4-beta.0",
"@lionweb/utilities": "0.6.6-beta.0"
"@lionweb/core": "0.6.6",
"@lionweb/test": "0.6.4",
"@lionweb/utilities": "0.6.6"
},
"scripts": {
"clean": "rm -rf dist/",
Expand Down
4 changes: 4 additions & 0 deletions packages/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ That means that key-value pairs appear in precisely the same order as they do in

## Changelog

### 0.6.7

* (Depend on `@lionweb/core` and `@lionweb/utilities` version 0.6.6.)

### 0.6.6

* TS types generator now generates 1 file per language.
Expand Down
10 changes: 5 additions & 5 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lionweb/cli",
"version": "0.6.7-beta.0",
"version": "0.6.7",
"description": "LionWeb CLI for {Java|Type}Script",
"bin": {
"lionweb-cli": "./dist/lionweb-cli.js"
Expand All @@ -10,15 +10,15 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/LionWeb-io/lionweb-typescript.git"
"url": "git+https://github.com/LionWeb-io/lionweb-typescript.git"
},
"bugs": {
"url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
},
"dependencies": {
"@lionweb/core": "0.6.6-beta.0",
"@lionweb/utilities": "0.6.6-beta.0",
"@lionweb/validation": "0.6.3-beta.0"
"@lionweb/core": "0.6.6",
"@lionweb/utilities": "0.6.6",
"@lionweb/validation": "0.6.2"
},
"scripts": {
"clean": "rm -rf dist/ lionweb-cli-*.tgz",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lionweb/core",
"version": "0.6.6-beta.0",
"version": "0.6.6",
"description": "LionWeb core for {Java|Type}Script",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -9,7 +9,7 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/LionWeb-io/lionweb-typescript.git"
"url": "git+https://github.com/LionWeb-io/lionweb-typescript.git"
},
"bugs": {
"url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
Expand Down
32 changes: 16 additions & 16 deletions packages/test/package.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,18 @@
{
"name": "@lionweb/test",
"version": "0.6.4-beta.0",
"version": "0.6.4",
"description": "LionWeb test for {Java|Type}Script",
"private": true,
"main": "dist/lioncore-cli.js",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/LionWeb-io/lionweb-typescript.git"
"url": "git+https://github.com/LionWeb-io/lionweb-typescript.git"
},
"bugs": {
"url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
},
"devDependencies": {
"@types/chai": "4.3.12",
"@types/mocha": "10.0.6",
"@types/xml2js": "0.4.14",
"chai": "4.4.1",
"degit": "2.8.4",
"mocha": "10.3.0",
"xml2js": "0.6.2"
},
"scripts": {
"clean": "rm -rf dist/ testset/ testchanges/ metrics/",
"build": "tsc",
Expand All @@ -32,9 +23,18 @@
"checkout-testchanges": "npx degit https://github.com/LionWeb-io/lionweb-integration-testing/testchanges/ testchanges",
"test": "find dist -type d | sed '1!G;h;$!d' | xargs npx mocha"
},
"dependencies": {
"@lionweb/core": "0.6.6-beta.0",
"@lionweb/utilities": "0.6.6-beta.0",
"@lionweb/validation": "0.6.3-beta.0"
}
"devDependencies": {
"@types/chai": "4.3.12",
"@types/mocha": "10.0.6",
"@types/xml2js": "0.4.14",
"chai": "4.4.1",
"degit": "2.8.4",
"mocha": "10.3.0",
"xml2js": "0.6.2"
},
"dependencies": {
"@lionweb/core": "0.6.6",
"@lionweb/utilities": "0.6.6",
"@lionweb/validation": "0.6.3-beta.0"
}
}
4 changes: 4 additions & 0 deletions packages/utilities/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ It contains utilities on top of the `core` package, such as:

## Changelog

### 0.6.6

* (Depend on `@lionweb/core` version 0.6.6.)

### 0.6.5

* TS types generator now generates 1 file per language.
Expand Down
6 changes: 3 additions & 3 deletions packages/utilities/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lionweb/utilities",
"version": "0.6.6-beta.0",
"version": "0.6.6",
"description": "LionWeb utilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -9,13 +9,13 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/LionWeb-io/lionweb-typescript.git"
"url": "git+https://github.com/LionWeb-io/lionweb-typescript.git"
},
"bugs": {
"url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
},
"dependencies": {
"@lionweb/core": "0.6.6-beta.0",
"@lionweb/core": "0.6.6",
"littoral-templates": "0.2.2",
"nanoid": "4.0.2"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/validation/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@lionweb/validation",
"version": "0.6.3-beta.0",
"license": "Apache 2.0",
"license": "Apache 2.0",
"description": "LionWeb Serialization validation",
"author": "jos.warmer@openmodeling.nl",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"type":"module",
"type": "module",
"keywords": [
"lionweb",
"serialization",
Expand Down

0 comments on commit a70b8e7

Please sign in to comment.