Skip to content

Commit ccb02d6

Browse files
author
unknown
committed
5.2.3
1 parent 95ef4ef commit ccb02d6

File tree

581 files changed

+28995
-38675
lines changed

Some content is hidden

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

581 files changed

+28995
-38675
lines changed

.angular-cli.json

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"project": {
4+
"name": "mdb-test-angular"
5+
},
6+
"apps": [
7+
{
8+
"root": "demo/src",
9+
"outDir": "demo/dist",
10+
"assets": [
11+
"assets",
12+
"favicon.ico"
13+
],
14+
"index": "index.html",
15+
"main": "main.ts",
16+
"polyfills": "polyfills.ts",
17+
"test": "test.ts",
18+
"tsconfig": "tsconfig.app.json",
19+
"testTsconfig": "tsconfig.spec.json",
20+
"prefix": "app",
21+
"styles": [
22+
"../../node_modules/font-awesome/scss/font-awesome.scss",
23+
"../../src/scss/bootstrap/bootstrap.scss",
24+
"../../src/scss/mdb-free.scss",
25+
"./styles.scss"
26+
],
27+
"scripts": [],
28+
"environmentSource": "environments/environment.ts",
29+
"environments": {
30+
"dev": "environments/environment.ts",
31+
"prod": "environments/environment.prod.ts"
32+
}
33+
}
34+
],
35+
"e2e": {
36+
"protractor": {
37+
"config": "./protractor.conf.js"
38+
}
39+
},
40+
"lint": [
41+
{
42+
"project": "src/tsconfig.app.json",
43+
"exclude": "**/node_modules/**"
44+
},
45+
{
46+
"project": "src/tsconfig.spec.json",
47+
"exclude": "**/node_modules/**"
48+
},
49+
{
50+
"project": "e2e/tsconfig.e2e.json",
51+
"exclude": "**/node_modules/**"
52+
}
53+
],
54+
"test": {
55+
"karma": {
56+
"config": "./karma.conf.js"
57+
}
58+
},
59+
"defaults": {
60+
"styleExt": "scss",
61+
"component": {}
62+
}
63+
}

.browserslistrc

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

.directory

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[Dolphin]
2+
Timestamp=2018,2,13,12,19,32
3+
Version=4
4+
5+
[Settings]
6+
HiddenFilesShown=true

.editorconfig

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

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

11-
[*.ts]
12-
quote_type = single
13-
1411
[*.md]
1512
max_line_length = off
1613
trim_trailing_whitespace = false

.gitignore

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,10 @@
44
/dist
55
/tmp
66
/out-tsc
7-
# Only exists if Bazel was run
8-
/bazel-out
97

108
# dependencies
119
/node_modules
1210

13-
# profiling files
14-
chrome-profiler-events*.json
15-
speed-measure-plugin*.json
16-
1711
# IDEs and editors
1812
/.idea
1913
.project
@@ -29,18 +23,20 @@ speed-measure-plugin*.json
2923
!.vscode/tasks.json
3024
!.vscode/launch.json
3125
!.vscode/extensions.json
32-
.history/*
3326

3427
# misc
3528
/.sass-cache
3629
/connect.lock
3730
/coverage
3831
/libpeerconnection.log
3932
npm-debug.log
40-
yarn-error.log
4133
testem.log
4234
/typings
4335

36+
# e2e
37+
/e2e/*.js
38+
/e2e/*.map
39+
4440
# System Files
4541
.DS_Store
4642
Thumbs.db

0 commit comments

Comments
 (0)