Skip to content

Commit eafe457

Browse files
authored
Disable standalone lint check and fix paths for angular modules (#1353)
1 parent cc21a46 commit eafe457

File tree

7 files changed

+17
-16
lines changed

7 files changed

+17
-16
lines changed

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "igniteui-cli",
3-
"version": "14.3.2",
3+
"version": "14.3.3-beta.0",
44
"description": "CLI tool for creating Ignite UI projects",
55
"keywords": [
66
"CLI",
@@ -78,8 +78,8 @@
7878
"all": true
7979
},
8080
"dependencies": {
81-
"@igniteui/angular-templates": "~19.0.1432",
82-
"@igniteui/cli-core": "~14.3.2",
81+
"@igniteui/angular-templates": "~19.0.1433-beta.0",
82+
"@igniteui/cli-core": "~14.3.3-beta.0",
8383
"@inquirer/prompts": "^5.4.0",
8484
"@types/yargs": "^17.0.33",
8585
"chalk": "^5.3.0",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@igniteui/cli-core",
3-
"version": "14.3.2",
3+
"version": "14.3.3-beta.0",
44
"description": "Base types and functionality for Ignite UI CLI",
55
"repository": {
66
"type": "git",

packages/igx-templates/igx-ts-legacy/projects/_base/files/__dot__eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
"prefix": "app",
3535
"style": "kebab-case"
3636
}
37-
]
37+
],
38+
"@angular-eslint/prefer-standalone": "off"
3839
}
3940
},
4041
{

packages/igx-templates/igx-ts-legacy/projects/_base/files/__dot__github/workflows/github-pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ jobs:
3535
- name: Build project with dynamic base-href
3636
run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
3737
- name: Update Resource Paths
38-
run: find ./dist/${{ env.PROJECT_NAME }} -type f -name '*main*.js' -exec sed -i -e "s|/assets|/${{ github.event.repository.name }}/assets|g" -e "s|url('/assets|url('/${{ github.event.repository.name }}/assets|g" {} +
38+
run: find ./dist/${{ env.PROJECT_NAME }}/browser -type f -name '*main*.js' -exec sed -i -e "s|/assets|/${{ github.event.repository.name }}/assets|g" -e "s|url('/assets|url('/${{ github.event.repository.name }}/assets|g" {} +
3939
- name: SPA routing handling
40-
run: cp ./dist/${{ env.PROJECT_NAME }}/index.html ./dist/${{ env.PROJECT_NAME }}/404.html
40+
run: cp ./dist/${{ env.PROJECT_NAME }}/browser/index.html ./dist/${{ env.PROJECT_NAME }}/browser/404.html
4141
- name: Upload build artifact to GitHub Pages
4242
uses: actions/upload-pages-artifact@v1
4343
with:
44-
path: ./dist/${{ env.PROJECT_NAME }}
44+
path: ./dist/${{ env.PROJECT_NAME }}/browser
4545
- name: Deploy to GitHub Pages
4646
uses: actions/deploy-pages@v1

packages/igx-templates/igx-ts-legacy/projects/_base_with_home/files/__dot__github/workflows/github-pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ jobs:
3535
- name: Build project with dynamic base-href
3636
run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
3737
- name: Update Resource Paths
38-
run: find ./dist/${{ env.PROJECT_NAME }} -type f -name '*main*.js' -exec sed -i -e "s|/assets|/${{ github.event.repository.name }}/assets|g" -e "s|url('/assets|url('/${{ github.event.repository.name }}/assets|g" {} +
38+
run: find ./dist/${{ env.PROJECT_NAME }}/browser -type f -name '*main*.js' -exec sed -i -e "s|/assets|/${{ github.event.repository.name }}/assets|g" -e "s|url('/assets|url('/${{ github.event.repository.name }}/assets|g" {} +
3939
- name: SPA routing handling
40-
run: cp ./dist/${{ env.PROJECT_NAME }}/index.html ./dist/${{ env.PROJECT_NAME }}/404.html
40+
run: cp ./dist/${{ env.PROJECT_NAME }}/browser/index.html ./dist/${{ env.PROJECT_NAME }}/browser/404.html
4141
- name: Upload build artifact to GitHub Pages
4242
uses: actions/upload-pages-artifact@v1
4343
with:
44-
path: ./dist/${{ env.PROJECT_NAME }}
44+
path: ./dist/${{ env.PROJECT_NAME }}/browser
4545
- name: Deploy to GitHub Pages
4646
uses: actions/deploy-pages@v1

packages/igx-templates/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@igniteui/angular-templates",
3-
"version": "19.0.1432",
3+
"version": "19.0.1433-beta.0",
44
"description": "Templates for Ignite UI for Angular projects and components",
55
"repository": {
66
"type": "git",
@@ -12,7 +12,7 @@
1212
"author": "Infragistics",
1313
"license": "MIT",
1414
"dependencies": {
15-
"@igniteui/cli-core": "~14.3.2",
15+
"@igniteui/cli-core": "~14.3.3-beta.0",
1616
"typescript": "~5.5.4"
1717
}
1818
}

packages/ng-schematics/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@igniteui/angular-schematics",
3-
"version": "19.0.1432",
3+
"version": "19.0.1433-beta.0",
44
"description": "Ignite UI for Angular Schematics for ng new and ng generate",
55
"repository": {
66
"type": "git",
@@ -20,8 +20,8 @@
2020
"dependencies": {
2121
"@angular-devkit/core": "^19.0.0",
2222
"@angular-devkit/schematics": "^19.0.0",
23-
"@igniteui/angular-templates": "~19.0.1432",
24-
"@igniteui/cli-core": "~14.3.2",
23+
"@igniteui/angular-templates": "~19.0.1433-beta.0",
24+
"@igniteui/cli-core": "~14.3.3-beta.0",
2525
"@schematics/angular": "~19.0.0",
2626
"minimatch": "^10.0.1",
2727
"rxjs": "^7.8.1"

0 commit comments

Comments
 (0)