@lionweb/class-core-generator 0.7.0-beta.13 → 0.7.0-beta.15

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/CHANGELOG.md +1 -1
  2. package/package.json +37 -37
package/CHANGELOG.md CHANGED
@@ -10,5 +10,5 @@
10
10
  * Make `console.log` verbosity of the generator calls `generateApiFromLanguages[Json]` (for language**s**) configurable, through an extra property `verbose` of the `GeneratorOptions` which defaults to `true`.
11
11
  * Add `replace<1-containment>With` and `replace<*-containment>AtIndex` methods.
12
12
  * Turn dev-dependencies into real ones — (as they're all used in shipped code).
13
- * Rename `DeltaHandler` &rarr; `DeltaReceiver`, `handleDelta` &rarr; `receiveDelta` to be more in line with the C# implememtation.
13
+ * Rename `DeltaHandler` &rarr; `DeltaReceiver`, `handleDelta` &rarr; `receiveDelta` to be more in line with the C# implementation.
14
14
 
package/package.json CHANGED
@@ -1,39 +1,39 @@
1
1
  {
2
- "name": "@lionweb/class-core-generator",
3
- "version": "0.7.0-beta.13",
4
- "description": "Generator for implementations of languages based on the class-core package",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "typings": "dist/index.d.ts",
8
- "type": "module",
9
- "license": "Apache-2.0",
10
- "repository": {
11
- "type": "git",
12
- "url": "git+https://github.com/LionWeb-io/lionweb-typescript.git"
13
- },
14
- "bugs": {
15
- "url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
16
- },
17
- "scripts": {
18
- "clean": "npx rimraf dist node_modules -g lionweb-class-core-generator-*.tgz",
19
- "build": "tsc",
20
- "lint": "eslint src",
21
- "prep:pre-release": "npm run clean && npm install && npm run build",
22
- "prerelease-alpha": "npm run prep:pre-release",
23
- "release-alpha": "npm publish --tag alpha",
24
- "prerelease-beta": "npm run prep:pre-release",
25
- "release-beta": "npm publish --tag beta",
26
- "prerelease": "npm run prep:pre-release",
27
- "release": "npm publish"
28
- },
29
- "dependencies": {
30
- "@lionweb/core": "0.7.0-beta.13",
31
- "@lionweb/io-lionweb-mps-specific": "0.7.0-beta.13",
32
- "@lionweb/json": "0.7.0-beta.13",
33
- "@lionweb/textgen-utils": "0.7.0-beta.13",
34
- "@lionweb/ts-utils": "0.7.0-beta.13",
35
- "@lionweb/utilities": "0.7.0-beta.13",
36
- "@types/node": "24.3.0",
37
- "littoral-templates": "0.5.0"
38
- }
2
+ "name": "@lionweb/class-core-generator",
3
+ "version": "0.7.0-beta.15",
4
+ "description": "Generator for implementations of languages based on the class-core package",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "typings": "dist/index.d.ts",
8
+ "type": "module",
9
+ "license": "Apache-2.0",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/LionWeb-io/lionweb-typescript.git"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
16
+ },
17
+ "scripts": {
18
+ "clean": "npx rimraf dist node_modules -g lionweb-class-core-generator-*.tgz",
19
+ "build": "tsc",
20
+ "lint": "eslint src",
21
+ "prep:pre-release": "npm run clean && npm install && npm run build",
22
+ "prerelease-alpha": "npm run prep:pre-release",
23
+ "release-alpha": "npm publish --tag alpha",
24
+ "prerelease-beta": "npm run prep:pre-release",
25
+ "release-beta": "npm publish --tag beta",
26
+ "prerelease": "npm run prep:pre-release",
27
+ "release": "npm publish"
28
+ },
29
+ "dependencies": {
30
+ "@lionweb/core": "0.7.0-beta.15",
31
+ "@lionweb/io-lionweb-mps-specific": "0.7.0-beta.15",
32
+ "@lionweb/json": "0.7.0-beta.15",
33
+ "@lionweb/textgen-utils": "0.7.0-beta.15",
34
+ "@lionweb/ts-utils": "0.7.0-beta.15",
35
+ "@lionweb/utilities": "0.7.0-beta.15",
36
+ "@types/node": "24.3.0",
37
+ "littoral-templates": "0.5.0"
38
+ }
39
39
  }