Skip to content

Commit cb294e1

Browse files
committed
built
1 parent 0bacb19 commit cb294e1

16 files changed

+2829
-205
lines changed

package-lock.json

+2,753-142
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
"@types/jasmine": "^2.8.16",
2727
"@types/minimatch": "^3.0.3",
2828
"@types/node": "^8.10.40",
29-
"jasmine": "^3.3.1"
29+
"jasmine": "^3.3.1",
30+
"typescript": "^4.5.4"
3031
},
3132
"dependencies": {
3233
"minimatch": "^3.0.4"

src/spec/index.js

+10-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/spec/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/spec/index.spec.js

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/spec/index.spec.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/spec/schema.d.ts

+20-16
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
export interface Schema {
2-
/**
3-
* The name of the spec.
4-
*/
5-
name: string;
6-
/**
7-
* The path to create the spec.
8-
*/
9-
path?: string;
10-
/**
11-
* The name of the project.
12-
*/
13-
project?: string;
14-
/**
15-
* Whether to force
16-
*/
17-
ignoreTargetNotFound?: boolean;
2+
/**
3+
* The name of the spec.
4+
*/
5+
name: string;
6+
/**
7+
* The type to create the spec for.
8+
*/
9+
type?: string;
10+
/**
11+
* The path to create the spec.
12+
*/
13+
path?: string;
14+
/**
15+
* The name of the project.
16+
*/
17+
project?: string;
18+
/**
19+
* Whether to force
20+
*/
21+
ignoreTargetNotFound?: boolean;
1822
}

0 commit comments

Comments
 (0)