@lionweb/utilities 0.6.12-beta.1 → 0.6.12-beta.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/CHANGELOG.md CHANGED
@@ -3,6 +3,8 @@
3
3
  ## 0.6.12 - not yet released
4
4
 
5
5
  * (Depend on `@lionweb/core` version 0.6.12.)
6
+ * Fix typo in code generated by `tsTypesForLanguage`.
7
+
6
8
 
7
9
  ## 0.6.11
8
10
 
@@ -159,7 +159,7 @@ export const tsTypesForLanguage = (language, ...generationOptions) => {
159
159
  const concreteClassifiers = language.entities.filter(isConcrete);
160
160
  return asString([
161
161
  `// Warning: this file is generated!`,
162
- `// Modifying it by hand it useless at best, and sabotage at worst.`,
162
+ `// Modifying it by hand is useless at best, and sabotage at worst.`,
163
163
  ``,
164
164
  `/*
165
165
  * language's metadata:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lionweb/utilities",
3
- "version": "0.6.12-beta.1",
3
+ "version": "0.6.12-beta.3",
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.12-beta.1",
18
+ "@lionweb/core": "0.6.12-beta.3",
19
19
  "littoral-templates": "0.3.0",
20
20
  "nanoid": "5.0.9"
21
21
  },