Skip to content

Commit a606df2

Browse files
committed
Merge branch 'master' of github.com:nativescript-community/nativescript-collectionview
2 parents e67cb36 + 478fd7a commit a606df2

29 files changed

+137
-2303
lines changed

.eslintrc.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
extends: ['plugin:prettier/recommended'],
3-
plugins: ['prettier', '@typescript-eslint'],
3+
plugins: ['@nativescript', 'prettier', '@typescript-eslint'],
44
parser: '@typescript-eslint/parser',
55
parserOptions: {
66
ecmaVersion: 2018,
@@ -10,9 +10,13 @@ module.exports = {
1010
extraFileExtensions: ['.vue'],
1111
warnOnUnsupportedTypeScriptVersion: false,
1212
tsconfigRootDir: __dirname,
13+
createDefaultProgram: true
1314
},
1415
rules: {
1516
'prettier/prettier': 'warn',
17+
'@nativescript/no-nativescript-angular-imports': 'warn',
18+
'@nativescript/no-tns-core-modules-imports': 'warn',
19+
'@nativescript/no-duplicate-ns-imports': 'warn',
1620
'@typescript-eslint/adjacent-overload-signatures': 'error',
1721
'@typescript-eslint/array-type': 'error',
1822
'@typescript-eslint/await-thenable': 'error',

demo-ng/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ platforms/
77
*.js.map
88
*.js
99
!ngcc.config.js
10-
!webpack.config.js
1110

1211
# Logs
1312
logs

demo-ng/package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -20,32 +20,32 @@
2020
"url": "https://github.com/NativeScript/NativeScript/issues"
2121
},
2222
"dependencies": {
23-
"@angular/animations": "~10.1.0",
24-
"@angular/common": "~10.1.0",
25-
"@angular/compiler": "~10.1.0",
26-
"@angular/core": "~10.1.0",
27-
"@angular/forms": "~10.1.0",
28-
"@angular/platform-browser": "~10.1.0",
29-
"@angular/platform-browser-dynamic": "~10.1.0",
30-
"@angular/router": "~10.1.0",
31-
"@nativescript/angular": "~10.1.0",
32-
"@nativescript/core": "~7.0.0",
23+
"@angular/animations": "~11.2.8",
24+
"@angular/common": "~11.2.8",
25+
"@angular/compiler": "~11.2.8",
26+
"@angular/core": "~11.2.8",
27+
"@angular/forms": "~11.2.8",
28+
"@angular/platform-browser": "~11.2.8",
29+
"@angular/platform-browser-dynamic": "~11.2.8",
30+
"@angular/router": "~11.2.8",
31+
"@nativescript-community/ui-collectionview": "../packages/collectionview",
32+
"@nativescript/angular": "~11.8.0",
33+
"@nativescript/core": "~8.0.0",
3334
"@nativescript/detox": "~1.0.0",
3435
"@nativescript/theme": "~3.0.0",
35-
"@nativescript-community/ui-collectionview": "../plugin",
3636
"reflect-metadata": "~0.1.12",
3737
"rxjs": "^6.6.0",
38-
"zone.js": "~0.11.1"
38+
"zone.js": "~0.11.4"
3939
},
4040
"devDependencies": {
41-
"@angular/compiler-cli": "~10.1.0",
42-
"@nativescript/android": "7.0.1",
43-
"@nativescript/ios": "7.0.4",
44-
"@nativescript/types": "~7.0.0",
45-
"@nativescript/webpack": "~3.0.0",
46-
"@ngtools/webpack": "~10.1.0",
41+
"@angular/compiler-cli": "~11.2.8",
42+
"@nativescript/android": "8.0.0",
43+
"@nativescript/ios": "8.0.0",
44+
"@nativescript/types": "~8.0.0",
45+
"@nativescript/webpack": "~4.1.0",
46+
"@ngtools/webpack": "~11.2.7",
4747
"detox": "~17.10.6",
48-
"typescript": "~4.0.0"
48+
"typescript": ">=4.0.0 <4.2.0"
4949
},
5050
"private": "true",
5151
"readme": "NativeScript Application"

0 commit comments

Comments
 (0)