Skip to content

Commit b1bd5a6

Browse files
fix(ref: no-ref): updage ng 19
1 parent 4a1d671 commit b1bd5a6

File tree

10 files changed

+68
-41
lines changed

10 files changed

+68
-41
lines changed

.stylelintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
/tmp
44
/out-tsc
55
/bazel-out
6-
/src/styles.scss
76

87
# Node
98
/node_modules

.stylelintrc.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": ["stylelint-config-recommended-scss"],
33
"customSyntax": "postcss-scss",
4-
"plugins": ["stylelint-prettier"],
4+
"plugins": ["stylelint-scss", "stylelint-prettier"],
55
"rules": {
66
"no-empty-source": null,
77
"scss/comment-no-empty": null,
@@ -12,6 +12,12 @@
1212
{
1313
"ignoreTypes": ["/^mat-/", "markdown", ":host", ":root"]
1414
}
15+
],
16+
"scss/at-rule-no-unknown": [
17+
true,
18+
{
19+
"ignoreAtRules": ["tailwind"]
20+
}
1521
]
1622
}
1723
}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 19.0.0(2024-11-21)
2+
3+
### Feature
4+
5+
- update ng 19.x
6+
17
# 18.0.4(2024-10-25)
28

39
### Feature

bun.lockb

50.2 KB
Binary file not shown.

package.json

Lines changed: 38 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-loader-indicator",
3-
"version": "18.0.4",
3+
"version": "19.0.0",
44
"description": "The best directive without wrapping your element to additional component",
55
"license": "MIT",
66
"keywords": [
@@ -36,63 +36,66 @@
3636
"url": "https://github.com/JsDaddy/ngx-loader-indicator.git"
3737
},
3838
"dependencies": {
39-
"@angular/animations": "18.2.9",
40-
"@angular/common": "18.2.9",
41-
"@angular/compiler": "18.2.9",
42-
"@angular/core": "18.2.9",
43-
"@angular/forms": "18.2.9",
44-
"@angular/platform-browser": "18.2.9",
45-
"@angular/platform-browser-dynamic": "18.2.9",
46-
"@angular/router": "^18.2.9",
47-
"core-js": "3.38.1",
39+
"@angular/animations": "19.0.0",
40+
"@angular/common": "19.0.0",
41+
"@angular/compiler": "19.0.0",
42+
"@angular/core": "19.0.0",
43+
"@angular/forms": "19.0.0",
44+
"@angular/platform-browser": "19.0.0",
45+
"@angular/platform-browser-dynamic": "19.0.0",
46+
"@angular/router": "^19.0.0",
47+
"core-js": "3.39.0",
4848
"highlight.js": "^11.10.0",
4949
"ngx-highlightjs": "^12.0.0",
5050
"rxjs": "7.8.1"
5151
},
5252
"devDependencies": {
53-
"@angular-devkit/build-angular": "18.2.10",
54-
"@angular-eslint/builder": "18.4.0",
55-
"@angular-eslint/eslint-plugin": "18.4.0",
56-
"@angular-eslint/eslint-plugin-template": "18.4.0",
57-
"@angular-eslint/schematics": "18.4.0",
58-
"@angular-eslint/template-parser": "18.4.0",
59-
"@angular/cli": "18.2.10",
60-
"@angular/compiler-cli": "18.2.9",
61-
"@angular/language-service": "18.2.9",
62-
"@commitlint/cli": "19.5.0",
63-
"@commitlint/config-conventional": "19.5.0",
53+
"@angular-devkit/build-angular": "19.0.0",
54+
"@angular-eslint/builder": "18.4.1",
55+
"@angular-eslint/eslint-plugin": "18.4.1",
56+
"@angular-eslint/eslint-plugin-template": "18.4.1",
57+
"@angular-eslint/schematics": "18.4.1",
58+
"@angular-eslint/template-parser": "18.4.1",
59+
"@angular/cli": "19.0.0",
60+
"@angular/compiler-cli": "19.0.0",
61+
"@angular/language-service": "19.0.0",
62+
"@commitlint/cli": "19.6.0",
63+
"@commitlint/config-conventional": "19.6.0",
6464
"@types/jasmine": "5.1.4",
6565
"@types/jasminewd2": "2.0.13",
66-
"@types/node": "22.7.9",
67-
"@typescript-eslint/eslint-plugin": "8.11.0",
66+
"@types/node": "22.9.1",
67+
"@typescript-eslint/eslint-plugin": "8.15.0",
6868
"@web/test-runner": "^0.19.0",
69-
"angular-eslint": "^18.4.0",
70-
"eslint": "9.13.0",
69+
"angular-eslint": "^18.4.1",
70+
"eslint": "9.15.0",
7171
"eslint-config-prettier": "9.1.0",
7272
"eslint-plugin-import": "2.31.0",
7373
"eslint-plugin-json": "4.0.1",
7474
"eslint-plugin-prettier": "5.2.1",
7575
"jasmine-core": "5.4.0",
7676
"jasmine-spec-reporter": "7.0.0",
7777
"lint-staged": "15.2.10",
78-
"ng-packagr": "18.2.1",
79-
"npm-check-updates": "^17.1.6",
80-
"postcss-scss": "4.0.9",
78+
"ng-packagr": "19.0.0",
79+
"npm-check-updates": "^17.1.11",
8180
"prettier": "3.3.3",
82-
"puppeteer": "23.6.0",
83-
"semantic-release": "24.1.3",
81+
"puppeteer": "23.9.0",
82+
"semantic-release": "24.2.0",
8483
"semantic-release-export-data": "1.1.0",
85-
"snyk": "^1.1294.0",
84+
"snyk": "^1.1294.1",
8685
"stylelint": "16.10.0",
8786
"stylelint-config-prettier": "9.0.5",
8887
"stylelint-config-recommended-scss": "14.1.0",
8988
"stylelint-prettier": "5.0.2",
9089
"ts-node": "10.9.2",
9190
"type-coverage": "^2.29.7",
92-
"typescript": "5.4.5",
93-
"typescript-eslint": "^8.11.0",
94-
"tailwindcss": "^3.4.14",
95-
"bun-types": "^1.1.33"
91+
"typescript": "5.6.3",
92+
"typescript-eslint": "^8.15.0",
93+
"tailwindcss": "^3.4.15",
94+
"bun-types": "^1.1.36",
95+
"postcss": "8.4.49",
96+
"postcss-nesting": "13.0.1",
97+
"cssnano": "7.0.6",
98+
"postcss-scss": "4.0.9"
9699
},
97100
"typeCoverage": {
98101
"atLeast": 98,

postcss.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
plugins: {
3+
'postcss-nesting': {},
4+
tailwindcss: {},
5+
autoprefixer: {},
6+
cssnano: { preset: 'default' },
7+
},
8+
};

projects/ngx-loader-indicator-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-loader-indicator",
3-
"version": "18.0.4",
3+
"version": "19.0.0",
44
"description": "The best directive without wrapping your element to additional component",
55
"license": "MIT",
66
"keywords": [

src/styles.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use './libraries/styles/scroll-bar';
2+
13
@tailwind base;
24
@tailwind components;
35
@tailwind utilities;

tsconfig.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,12 @@
3232
"@libraries/*": ["./src/libraries/*"]
3333
},
3434
"skipLibCheck": true,
35-
"noImplicitAny": true
35+
"noImplicitAny": true,
36+
"isolatedModules": true
3637
},
3738
"angularCompilerOptions": {
3839
"enableI18nLegacyMessageIdFormat": false,
40+
"strictStandalone": true,
3941
"strictInjectionParameters": true,
4042
"strictInputAccessModifiers": true,
4143
"strictTemplates": true,
@@ -44,7 +46,8 @@
4446
"extendedDiagnostics": {
4547
"checks": {
4648
"invalidBananaInBox": "error",
47-
"nullishCoalescingNotNullable": "warning"
49+
"nullishCoalescingNotNullable": "warning",
50+
"unusedStandaloneImports": "suppress"
4851
},
4952
"defaultCategory": "suppress"
5053
}

0 commit comments

Comments
 (0)