igniteui-cli 14.4.2 → 14.4.4-beta.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-cli",
|
|
3
|
-
"version": "14.4.
|
|
3
|
+
"version": "14.4.4-beta.0",
|
|
4
4
|
"description": "CLI tool for creating Ignite UI projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"CLI",
|
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
"all": true
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@igniteui/angular-templates": "~19.2.
|
|
74
|
-
"@igniteui/cli-core": "~14.4.
|
|
73
|
+
"@igniteui/angular-templates": "~19.2.1444-beta.0",
|
|
74
|
+
"@igniteui/cli-core": "~14.4.4-beta.0",
|
|
75
75
|
"@inquirer/prompts": "^5.4.0",
|
|
76
76
|
"@types/yargs": "^17.0.33",
|
|
77
77
|
"chalk": "^5.3.0",
|
package/templates/react/igr-ts/projects/_base/files/__dot__azure/workflows/azure-pipelines.yml
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Azure CI
|
|
2
|
+
|
|
3
|
+
trigger:
|
|
4
|
+
branches:
|
|
5
|
+
include: [ $(yamlDefaultBranch) ]
|
|
6
|
+
|
|
7
|
+
pr:
|
|
8
|
+
branches:
|
|
9
|
+
include: [ $(yamlDefaultBranch) ]
|
|
10
|
+
|
|
11
|
+
pool:
|
|
12
|
+
vmImage: 'ubuntu-latest'
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- script: npm i # replace with 'npm ci' after committing lock file from first install
|
|
16
|
+
displayName: 'Install dependencies'
|
|
17
|
+
- script: npm run lint
|
|
18
|
+
displayName: 'Run linter'
|
|
19
|
+
continueOnError: true
|
|
20
|
+
- script: npm run build
|
|
21
|
+
displayName: 'Build the project'
|
|
22
|
+
- script: npm run test
|
|
23
|
+
displayName: 'Run tests'
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Azure CI
|
|
2
|
+
|
|
3
|
+
trigger:
|
|
4
|
+
branches:
|
|
5
|
+
include: [ $(yamlDefaultBranch) ]
|
|
6
|
+
|
|
7
|
+
pr:
|
|
8
|
+
branches:
|
|
9
|
+
include: [ $(yamlDefaultBranch) ]
|
|
10
|
+
|
|
11
|
+
pool:
|
|
12
|
+
vmImage: 'ubuntu-latest'
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- script: npm i # replace with 'npm ci' after committing lock file from first install
|
|
16
|
+
displayName: 'Install dependencies'
|
|
17
|
+
- script: npm run lint
|
|
18
|
+
displayName: 'Run linter'
|
|
19
|
+
continueOnError: true
|
|
20
|
+
- script: npm run build
|
|
21
|
+
displayName: 'Build the project'
|
|
22
|
+
- script: npm run test
|
|
23
|
+
displayName: 'Run tests'
|