igniteui-cli 11.0.2-alpha.1 → 11.0.3

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": "igniteui-cli",
3
- "version": "11.0.2-alpha.1",
3
+ "version": "11.0.3",
4
4
  "description": "CLI tool for creating Ignite UI projects",
5
5
  "keywords": [
6
6
  "CLI",
@@ -72,8 +72,8 @@
72
72
  "all": true
73
73
  },
74
74
  "dependencies": {
75
- "@igniteui/angular-templates": "~15.0.1102-alpha.1",
76
- "@igniteui/cli-core": "~11.0.2-alpha.1",
75
+ "@igniteui/angular-templates": "~15.0.1103",
76
+ "@igniteui/cli-core": "~11.0.3",
77
77
  "chalk": "^2.3.2",
78
78
  "fs-extra": "^3.0.1",
79
79
  "glob": "^7.1.2",
@@ -2,6 +2,7 @@
2
2
 
3
3
  # compiled output
4
4
  /dist
5
+ /test
5
6
 
6
7
  # dependencies
7
8
  /node_modules
@@ -17,7 +17,7 @@
17
17
  "build": "rimraf dist && tsc && rollup -c rollup.config.mjs",
18
18
  "start:build": "web-dev-server --root-dir dist --app-index index.html --open",
19
19
  "lint": "eslint \"**/*.{js,ts}\" --ignore-path .gitignore",
20
- "test": "tsc && wtr"
20
+ "test": "tsc --project tsconfig.test.json && wtr"
21
21
  },
22
22
  "dependencies": {
23
23
  "@vaadin/router": "^1.7.4",
@@ -41,7 +41,7 @@
41
41
  "deepmerge": "^4.2.2",
42
42
  "eslint": "^8.32.0",
43
43
  "eslint-plugin-lit": "^1.8.2",
44
- "igniteui-cli": "^11.0.2-alpha.1",
44
+ "igniteui-cli": "^11.0.2",
45
45
  "rimraf": "^4.1.2",
46
46
  "rollup": "^2.79.0",
47
47
  "rollup-plugin-copy-assets": "^2.0.3",
@@ -37,7 +37,7 @@ export default {
37
37
  /** Bundle assets references via import.meta.url */
38
38
  importMetaAssets(),
39
39
  /** Compile JS to a lower language target */
40
- babel.babel({
40
+ babel({
41
41
  babelHelpers: 'bundled',
42
42
  presets: [
43
43
  [
@@ -23,9 +23,12 @@
23
23
  "incremental": true
24
24
  },
25
25
  "exclude": [
26
- "dist"
26
+ "test"
27
+ ],
28
+ "files": [
29
+ "src/index.ts"
27
30
  ],
28
31
  "include": [
29
- "**/*.ts"
32
+ "src/**/*.d.ts"
30
33
  ]
31
34
  }
@@ -0,0 +1,13 @@
1
+
2
+ {
3
+ "extends": "./tsconfig.json",
4
+ "compilerOptions": {
5
+ "outDir": "test"
6
+ },
7
+ "exclude": [
8
+ "dist"
9
+ ],
10
+ "include": [
11
+ "**/*.ts"
12
+ ]
13
+ }
@@ -4,7 +4,7 @@ const filteredLogs = ['Running in dev mode', 'lit-html is in dev mode'];
4
4
 
5
5
  export default /** @type {import("@web/test-runner").TestRunnerConfig} */ ({
6
6
  /** Test files to run */
7
- files: 'dist/src/app/**/*.test.js',
7
+ files: 'test/src/app/**/*.test.js',
8
8
 
9
9
  /** Resolve bare module imports */
10
10
  nodeResolve: {
@@ -17,7 +17,7 @@
17
17
  "build": "rimraf dist && tsc && rollup -c rollup.config.mjs",
18
18
  "start:build": "web-dev-server --root-dir dist --app-index index.html --open",
19
19
  "lint": "eslint \"**/*.{js,ts}\" --ignore-path .gitignore",
20
- "test": "tsc && wtr"
20
+ "test": "tsc --project tsconfig.test.json && wtr"
21
21
  },
22
22
  "dependencies": {
23
23
  "@vaadin/router": "^1.7.4",
@@ -50,7 +50,7 @@
50
50
  "deepmerge": "^4.2.2",
51
51
  "eslint": "^8.32.0",
52
52
  "eslint-plugin-lit": "^1.8.2",
53
- "igniteui-cli": "^11.0.2-alpha.1",
53
+ "igniteui-cli": "^11.0.2",
54
54
  "rimraf": "^4.1.2",
55
55
  "rollup": "^2.79.0",
56
56
  "rollup-plugin-copy-assets": "^2.0.3",