@toa.io/extensions.exposition 0.20.0 → 0.22.0

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/package.json +10 -8
  2. package/readme.md +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toa.io/extensions.exposition",
3
- "version": "0.20.0",
3
+ "version": "0.22.0",
4
4
  "description": "Toa Exposition",
5
5
  "author": "temich <tema.gurtovoy@gmail.com>",
6
6
  "homepage": "https://github.com/toa-io/toa#readme",
@@ -20,11 +20,11 @@
20
20
  "nopeable": "*"
21
21
  },
22
22
  "dependencies": {
23
- "@toa.io/core": "0.20.0",
24
- "@toa.io/generic": "0.20.0",
25
- "@toa.io/http": "0.20.0",
26
- "@toa.io/schemas": "0.20.0",
27
- "@toa.io/streams": "0.1.0",
23
+ "@toa.io/core": "0.22.0",
24
+ "@toa.io/generic": "0.22.0",
25
+ "@toa.io/http": "0.22.0",
26
+ "@toa.io/schemas": "0.22.0",
27
+ "@toa.io/streams": "0.22.0",
28
28
  "bcryptjs": "2.4.3",
29
29
  "cors": "2.8.5",
30
30
  "express": "4.18.2",
@@ -38,7 +38,9 @@
38
38
  "testEnvironment": "node"
39
39
  },
40
40
  "scripts": {
41
- "transpile": "npx tsc && npx tsc -p ./components/identity.basic && npx tsc -p ./components/identity.tokens",
41
+ "transpile": "rm -rf transpiled && npx tsc && npm run transpile:basic && npm run transpile:tokens",
42
+ "transpile:basic": "rm -rf ./components/identity.basic/operations && npx tsc -p ./components/identity.basic",
43
+ "transpile:tokens": "rm -rf ./components/identity.tokens/operations && npx tsc -p ./components/identity.tokens",
42
44
  "features": "npx cucumber-js"
43
45
  },
44
46
  "devDependencies": {
@@ -47,5 +49,5 @@
47
49
  "@types/express": "4.17.17",
48
50
  "@types/negotiator": "0.6.1"
49
51
  },
50
- "gitHead": "28fc4b45c224c3683acaaf0e4abd1eb04e07b408"
52
+ "gitHead": "c463348c8eb54a43f7755ec8aeba9acafb56d53b"
51
53
  }
package/readme.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # Toa Exposition
2
2
 
3
- ## TL;DR
4
-
5
- Exposition is a converter from [ROA](https://en.wikipedia.org/wiki/Resource-oriented_architecture)
3
+ Converter from [ROA](https://en.wikipedia.org/wiki/Resource-oriented_architecture)
6
4
  to [SOA](https://en.wikipedia.org/wiki/Service-oriented_architecture).
7
5
 
6
+ ## TL;DR
7
+
8
8
  ```yaml
9
9
  # manifest.toa.yaml
10
10