@reventlessdev/trait-attachments 1.0.0-alpha.1 → 1.0.0-alpha.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reventlessdev/trait-attachments",
3
- "version": "1.0.0-alpha.1",
3
+ "version": "1.0.0-alpha.2",
4
4
  "description": "Attachments domain trait: rules, host contract, conformance suite and emitter for an ordered set of stored files on an entity, with a primary and captions",
5
5
  "license": "Apache-2.0",
6
6
  "files": [
@@ -13,8 +13,8 @@
13
13
  "dependencies": {
14
14
  "sury": "11.0.0-rc.2",
15
15
  "sury-ppx": "11.0.0-rc.2",
16
- "@reventlessdev/reventless-gwt": "1.0.0-alpha.199",
17
- "@reventlessdev/reventless-spec": "3.0.0-alpha.125"
16
+ "@reventlessdev/reventless-gwt": "1.0.0-alpha.200",
17
+ "@reventlessdev/reventless-spec": "3.0.0-alpha.126"
18
18
  },
19
19
  "devDependencies": {
20
20
  "rescript": "12.3.0"
@@ -133,9 +133,9 @@ let refTypeOf = (c: config) => c.refType->Option.getOr("Reventless.UploadableIma
133
133
  //
134
134
  // The rule survives being emitted as an annotation because the PPX lowers it
135
135
  // into a `switch` whose arms are ordinary expressions: `AllowGroupz` does not
136
- // compile. `@transition` has no such second chance — it is stripped before the
137
- // typechecker runs so the states go out through `commandTransition` below
138
- // instead, where the compiler resolves them.
136
+ // compile. A stripped-before-the-typechecker attribute had no such second
137
+ // chance, which is why the states go out through `commandTransition` below,
138
+ // where the compiler resolves them.
139
139
  let commandAttributes = (c: config): string =>
140
140
  switch c.authorize {
141
141
  | Some(a) => ` | @authorize(${a})\n `
@@ -146,8 +146,8 @@ let commandAttributes = (c: config): string =>
146
146
  // slice is a file the trait writes.
147
147
  //
148
148
  // The states arrive as config either way; what changes is where they land. In
149
- // `@transition([Products.Listed])` they are stripped before the typechecker and
150
- // matched as strings at plugin assembly; in `Guards([Products.Listed])` they are
149
+ // the removed `@transition([Products.Listed])` they were stripped before the
150
+ // typechecker and matched as strings at assembly; in `Guards([Products.Listed])` they are
151
151
  // constructor references the compiler resolves, so a config typo is a build
152
152
  // error naming it. Same input, and the difference is only who checks it.
153
153
  let commandTransitionBinding = (c: config): array<string> => {