@vnejs/contracts.core.scenario 0.1.2 → 0.1.4

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/dist/const.d.ts CHANGED
@@ -4,6 +4,8 @@ export declare const LINE_KEYWORDS: {
4
4
  readonly SKIP_IF_POSSIBLE: "skip-if-possible";
5
5
  readonly ASYNC: "async";
6
6
  readonly EXTEND: "extend";
7
+ readonly AUTONEXT: "autonext";
8
+ readonly DANGEROUS: "dangerous";
7
9
  };
8
10
  export declare const LINE_PREFIXES: {
9
11
  readonly MODULE: "$";
@@ -16,6 +18,8 @@ export declare const CONSTANTS: {
16
18
  readonly SKIP_IF_POSSIBLE: "skip-if-possible";
17
19
  readonly ASYNC: "async";
18
20
  readonly EXTEND: "extend";
21
+ readonly AUTONEXT: "autonext";
22
+ readonly DANGEROUS: "dangerous";
19
23
  };
20
24
  readonly LINE_PREFIXES: {
21
25
  readonly MODULE: "$";
package/dist/const.js CHANGED
@@ -4,6 +4,8 @@ export const LINE_KEYWORDS = {
4
4
  SKIP_IF_POSSIBLE: "skip-if-possible",
5
5
  ASYNC: "async",
6
6
  EXTEND: "extend",
7
+ AUTONEXT: "autonext",
8
+ DANGEROUS: "dangerous",
7
9
  };
8
10
  export const LINE_PREFIXES = {
9
11
  MODULE: "$",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vnejs/contracts.core.scenario",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Contracts for @vnejs/plugins.core.scenario",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/const.ts CHANGED
@@ -5,6 +5,8 @@ export const LINE_KEYWORDS = {
5
5
  SKIP_IF_POSSIBLE: "skip-if-possible",
6
6
  ASYNC: "async",
7
7
  EXTEND: "extend",
8
+ AUTONEXT: "autonext",
9
+ DANGEROUS: "dangerous",
8
10
  } as const;
9
11
 
10
12
  export const LINE_PREFIXES = {