Skip to content

Commit 2603c30

Browse files
authored
Copy updated ionic-angular example from vercel/vercel (#1046)
### Description Copying updated ionic-angular example from vercel/vercel#12871. ### Demo URL [<!-- Provide a URL to a live deployment where we can test your PR. If a demo isn't possible feel free to omit this section. -->](https://ionic-angular-8kwh9yqu0-austin-merricks-projects.vercel.app/tabs/tab1) ### Type of Change - [ ] New Example - [X] Example updates (Bug fixes, new features, etc.) - [ ] Other (changes to the codebase, but not to examples) ### New Example Checklist - [ ] 🛫 `npm run new-example` was used to create the example - [ ] 📚 The template wasn't used but I carefuly read the [Adding a new example](https://github.com/vercel/examples#adding-a-new-example) steps and implemented them in the example - [ ] 📱 Is it responsive? Are mobile and tablets considered?
1 parent e8471d1 commit 2603c30

File tree

233 files changed

+19013
-14527
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

233 files changed

+19013
-14527
lines changed

framework-boilerplates/ionic-angular/browserslist renamed to framework-boilerplates/ionic-angular/.browserslistrc

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22
# For additional information regarding the format and rule options, please see:
33
# https://github.com/browserslist/browserslist#queries
44

5+
# For the full list of supported browsers by the Angular framework, please see:
6+
# https://angular.io/guide/browser-support
7+
58
# You can see what browsers were selected by your queries by running:
69
# npx browserslist
710

8-
> 0.5%
9-
last 2 versions
10-
Firefox ESR
11-
not dead
12-
not IE 9-11 # For IE 9-11 support, remove 'not'.
11+
Chrome >=79
12+
ChromeAndroid >=79
13+
Firefox >=70
14+
Edge >=79
15+
Safari >=14
16+
iOS >=14

framework-boilerplates/ionic-angular/.editorconfig

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Editor configuration, see http://editorconfig.org
1+
# Editor configuration, see https://editorconfig.org
22
root = true
33

44
[*]
@@ -8,6 +8,9 @@ indent_size = 2
88
insert_final_newline = true
99
trim_trailing_whitespace = true
1010

11+
[*.ts]
12+
quote_type = single
13+
1114
[*.md]
1215
max_line_length = off
1316
trim_trailing_whitespace = false
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"root": true,
3+
"ignorePatterns": ["projects/**/*"],
4+
"overrides": [
5+
{
6+
"files": ["*.ts"],
7+
"parserOptions": {
8+
"project": ["tsconfig.json"],
9+
"createDefaultProgram": true
10+
},
11+
"extends": [
12+
"plugin:@angular-eslint/recommended",
13+
"plugin:@angular-eslint/template/process-inline-templates"
14+
],
15+
"rules": {
16+
"@angular-eslint/prefer-standalone": "off",
17+
"@angular-eslint/component-class-suffix": [
18+
"error",
19+
{
20+
"suffixes": ["Page", "Component"]
21+
}
22+
],
23+
"@angular-eslint/component-selector": [
24+
"error",
25+
{
26+
"type": "element",
27+
"prefix": "app",
28+
"style": "kebab-case"
29+
}
30+
],
31+
"@angular-eslint/directive-selector": [
32+
"error",
33+
{
34+
"type": "attribute",
35+
"prefix": "app",
36+
"style": "camelCase"
37+
}
38+
]
39+
}
40+
},
41+
{
42+
"files": ["*.html"],
43+
"extends": ["plugin:@angular-eslint/template/recommended"],
44+
"rules": {}
45+
}
46+
]
47+
}

framework-boilerplates/ionic-angular/.firebaserc

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 56 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,71 @@
11
# Specifies intentionally untracked files to ignore when using Git
22
# http://git-scm.com/docs/gitignore
3-
www/
43

54
*~
65
*.sw[mnpcod]
7-
*.log
6+
.tmp
87
*.tmp
98
*.tmp.*
9+
UserInterfaceState.xcuserstate
10+
$RECYCLE.BIN/
11+
12+
*.log
1013
log.txt
14+
15+
16+
/.sourcemaps
17+
/.versions
18+
/coverage
19+
20+
# Ionic
21+
/.ionic
22+
/www
23+
/platforms
24+
/plugins
25+
26+
# Compiled output
27+
/dist
28+
/tmp
29+
/out-tsc
30+
/bazel-out
31+
32+
# Node
33+
/node_modules
34+
npm-debug.log
35+
yarn-error.log
36+
37+
# IDEs and editors
38+
.idea/
39+
.project
40+
.classpath
41+
.c9/
42+
*.launch
43+
.settings/
1144
*.sublime-project
1245
*.sublime-workspace
13-
.vscode/
14-
npm-debug.log*
15-
.firebase/
16-
.idea/
17-
.sourcemaps/
46+
47+
# Visual Studio Code
48+
.vscode/*
49+
!.vscode/settings.json
50+
!.vscode/tasks.json
51+
!.vscode/launch.json
52+
!.vscode/extensions.json
53+
.history/*
54+
55+
56+
# Miscellaneous
57+
/.angular
58+
/.angular/cache
1859
.sass-cache/
19-
.tmp/
20-
.versions/
21-
coverage/
22-
dist/
23-
node_modules/
24-
tmp/
25-
temp/
26-
hooks/
27-
platforms/
28-
plugins/
29-
plugins/android.json
30-
plugins/ios.json
31-
$RECYCLE.BIN/
60+
/.nx
61+
/.nx/cache
62+
/connect.lock
63+
/coverage
64+
/libpeerconnection.log
65+
testem.log
66+
/typings
3267

68+
# System files
3369
.DS_Store
3470
Thumbs.db
35-
UserInterfaceState.xcuserstate
36-
3771
.vercel

framework-boilerplates/ionic-angular/LICENSE

Lines changed: 0 additions & 202 deletions
This file was deleted.

0 commit comments

Comments
 (0)