@autometa/app 0.1.4 → 0.1.6
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/.turbo/turbo-test.log +4 -4
- package/CHANGELOG.md +15 -0
- package/package.json +6 -6
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
|
|
2
|
-
> @autometa/app@0.1.
|
|
2
|
+
> @autometa/app@0.1.4 test /Users/ben.aherne/Documents/GitHub/autometa/packages/app
|
|
3
3
|
> vitest run
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
RUN v0.33.0 /Users/ben.aherne/Documents/GitHub/autometa/packages/app
|
|
7
7
|
|
|
8
|
-
✓ src/decorators/fixture.spec.ts (2 tests)
|
|
8
|
+
✓ src/decorators/fixture.spec.ts (2 tests) 2ms
|
|
9
9
|
|
|
10
10
|
Test Files 1 passed (1)
|
|
11
11
|
Tests 2 passed (2)
|
|
12
|
-
Start at
|
|
13
|
-
Duration
|
|
12
|
+
Start at 17:37:07
|
|
13
|
+
Duration 326ms (transform 54ms, setup 0ms, collect 87ms, tests 2ms, environment 0ms, prepare 93ms)
|
|
14
14
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @autometa/app
|
|
2
2
|
|
|
3
|
+
## 0.1.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f167963f: Fix: typo in AutometaWorld 'dfromPhrase' -> 'fromPhrase'
|
|
8
|
+
|
|
9
|
+
## 0.1.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [12bd4b1e]
|
|
14
|
+
- @autometa/errors@0.1.2
|
|
15
|
+
- @autometa/asserters@0.1.2
|
|
16
|
+
- @autometa/phrases@0.1.4
|
|
17
|
+
|
|
3
18
|
## 0.1.4
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@autometa/app",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "App and World container for Autometa",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -44,15 +44,15 @@
|
|
|
44
44
|
"typescript": "^4.9.5",
|
|
45
45
|
"vitest": "0.33.0",
|
|
46
46
|
"@autometa/types": "^0.4.0",
|
|
47
|
-
"
|
|
48
|
-
"
|
|
47
|
+
"eslint-config-custom": "0.6.0",
|
|
48
|
+
"tsconfig": "0.7.0"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"tsyringe": "^4.8.0",
|
|
52
52
|
"uuid": "^9.0.0",
|
|
53
|
-
"@autometa/
|
|
54
|
-
"@autometa/
|
|
55
|
-
"@autometa/phrases": "0.1.
|
|
53
|
+
"@autometa/errors": "0.1.2",
|
|
54
|
+
"@autometa/asserters": "0.1.2",
|
|
55
|
+
"@autometa/phrases": "0.1.4"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"test": "vitest run",
|