Skip to content
This repository was archived by the owner on Mar 4, 2023. It is now read-only.

Commit e768bcb

Browse files
author
evombau
committed
init
0 parents  commit e768bcb

Some content is hidden

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

51 files changed

+15829
-0
lines changed

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Editor configuration, see https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.ts]
12+
quote_type = single
13+
14+
[*.md]
15+
max_line_length = off
16+
trim_trailing_whitespace = false

.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
# Only exists if Bazel was run
8+
/bazel-out
9+
10+
# dependencies
11+
/node_modules
12+
13+
# profiling files
14+
chrome-profiler-events*.json
15+
speed-measure-plugin*.json
16+
17+
# IDEs and editors
18+
/.idea
19+
.project
20+
.classpath
21+
.c9/
22+
*.launch
23+
.settings/
24+
*.sublime-workspace
25+
26+
# IDE - VSCode
27+
.vscode/*
28+
!.vscode/settings.json
29+
!.vscode/tasks.json
30+
!.vscode/launch.json
31+
!.vscode/extensions.json
32+
.history/*
33+
34+
# misc
35+
/.sass-cache
36+
/connect.lock
37+
/coverage
38+
/libpeerconnection.log
39+
npm-debug.log
40+
yarn-error.log
41+
testem.log
42+
/typings
43+
44+
# System Files
45+
.DS_Store
46+
Thumbs.db

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# MyWorkspace
2+
3+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.7.
4+
5+
## Development server
6+
7+
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
8+
9+
## Code scaffolding
10+
11+
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
12+
13+
## Build
14+
15+
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
16+
17+
## Running unit tests
18+
19+
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
20+
21+
## Running end-to-end tests
22+
23+
Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
24+
25+
## Further help
26+
27+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).

angular.json

Lines changed: 208 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,208 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"angular-calender": {
7+
"projectType": "library",
8+
"root": "projects/angular-calender",
9+
"sourceRoot": "projects/angular-calender/src",
10+
"prefix": "lib",
11+
"architect": {
12+
"build": {
13+
"builder": "@angular-devkit/build-ng-packagr:build",
14+
"options": {
15+
"tsConfig": "projects/angular-calender/tsconfig.lib.json",
16+
"project": "projects/angular-calender/ng-package.json"
17+
},
18+
"configurations": {
19+
"production": {
20+
"tsConfig": "projects/angular-calender/tsconfig.lib.prod.json"
21+
}
22+
}
23+
},
24+
"test": {
25+
"builder": "@angular-devkit/build-angular:karma",
26+
"options": {
27+
"main": "projects/angular-calender/src/test.ts",
28+
"tsConfig": "projects/angular-calender/tsconfig.spec.json",
29+
"karmaConfig": "projects/angular-calender/karma.conf.js"
30+
}
31+
},
32+
"lint": {
33+
"builder": "@angular-devkit/build-angular:tslint",
34+
"options": {
35+
"tsConfig": [
36+
"projects/angular-calender/tsconfig.lib.json",
37+
"projects/angular-calender/tsconfig.spec.json"
38+
],
39+
"exclude": [
40+
"**/node_modules/**"
41+
]
42+
}
43+
}
44+
}
45+
},
46+
"my-first-app": {
47+
"projectType": "application",
48+
"schematics": {
49+
"@schematics/angular:component": {
50+
"style": "scss"
51+
}
52+
},
53+
"root": "projects/my-first-app",
54+
"sourceRoot": "projects/my-first-app/src",
55+
"prefix": "app",
56+
"architect": {
57+
"build": {
58+
"builder": "@angular-devkit/build-angular:browser",
59+
"options": {
60+
"outputPath": "dist/my-first-app",
61+
"index": "projects/my-first-app/src/index.html",
62+
"main": "projects/my-first-app/src/main.ts",
63+
"polyfills": "projects/my-first-app/src/polyfills.ts",
64+
"tsConfig": "projects/my-first-app/tsconfig.app.json",
65+
"aot": true,
66+
"assets": [
67+
"projects/my-first-app/src/favicon.ico",
68+
"projects/my-first-app/src/assets"
69+
],
70+
"styles": [
71+
"projects/my-first-app/src/styles.scss"
72+
],
73+
"scripts": []
74+
},
75+
"configurations": {
76+
"production": {
77+
"fileReplacements": [
78+
{
79+
"replace": "projects/my-first-app/src/environments/environment.ts",
80+
"with": "projects/my-first-app/src/environments/environment.prod.ts"
81+
}
82+
],
83+
"optimization": true,
84+
"outputHashing": "all",
85+
"sourceMap": false,
86+
"extractCss": true,
87+
"namedChunks": false,
88+
"extractLicenses": true,
89+
"vendorChunk": false,
90+
"buildOptimizer": true,
91+
"budgets": [
92+
{
93+
"type": "initial",
94+
"maximumWarning": "2mb",
95+
"maximumError": "5mb"
96+
},
97+
{
98+
"type": "anyComponentStyle",
99+
"maximumWarning": "6kb",
100+
"maximumError": "10kb"
101+
}
102+
]
103+
}
104+
}
105+
},
106+
"serve": {
107+
"builder": "@angular-devkit/build-angular:dev-server",
108+
"options": {
109+
"browserTarget": "my-first-app:build"
110+
},
111+
"configurations": {
112+
"production": {
113+
"browserTarget": "my-first-app:build:production"
114+
}
115+
}
116+
},
117+
"extract-i18n": {
118+
"builder": "@angular-devkit/build-angular:extract-i18n",
119+
"options": {
120+
"browserTarget": "my-first-app:build"
121+
}
122+
},
123+
"test": {
124+
"builder": "@angular-devkit/build-angular:karma",
125+
"options": {
126+
"main": "projects/my-first-app/src/test.ts",
127+
"polyfills": "projects/my-first-app/src/polyfills.ts",
128+
"tsConfig": "projects/my-first-app/tsconfig.spec.json",
129+
"karmaConfig": "projects/my-first-app/karma.conf.js",
130+
"assets": [
131+
"projects/my-first-app/src/favicon.ico",
132+
"projects/my-first-app/src/assets"
133+
],
134+
"styles": [
135+
"projects/my-first-app/src/styles.scss"
136+
],
137+
"scripts": []
138+
}
139+
},
140+
"lint": {
141+
"builder": "@angular-devkit/build-angular:tslint",
142+
"options": {
143+
"tsConfig": [
144+
"projects/my-first-app/tsconfig.app.json",
145+
"projects/my-first-app/tsconfig.spec.json",
146+
"projects/my-first-app/e2e/tsconfig.json"
147+
],
148+
"exclude": [
149+
"**/node_modules/**"
150+
]
151+
}
152+
},
153+
"e2e": {
154+
"builder": "@angular-devkit/build-angular:protractor",
155+
"options": {
156+
"protractorConfig": "projects/my-first-app/e2e/protractor.conf.js",
157+
"devServerTarget": "my-first-app:serve"
158+
},
159+
"configurations": {
160+
"production": {
161+
"devServerTarget": "my-first-app:serve:production"
162+
}
163+
}
164+
}
165+
}
166+
},
167+
"angular-calendar": {
168+
"projectType": "library",
169+
"root": "projects/angular-calendar",
170+
"sourceRoot": "projects/angular-calendar/src",
171+
"prefix": "lib",
172+
"architect": {
173+
"build": {
174+
"builder": "@angular-devkit/build-ng-packagr:build",
175+
"options": {
176+
"tsConfig": "projects/angular-calendar/tsconfig.lib.json",
177+
"project": "projects/angular-calendar/ng-package.json"
178+
},
179+
"configurations": {
180+
"production": {
181+
"tsConfig": "projects/angular-calendar/tsconfig.lib.prod.json"
182+
}
183+
}
184+
},
185+
"test": {
186+
"builder": "@angular-devkit/build-angular:karma",
187+
"options": {
188+
"main": "projects/angular-calendar/src/test.ts",
189+
"tsConfig": "projects/angular-calendar/tsconfig.spec.json",
190+
"karmaConfig": "projects/angular-calendar/karma.conf.js"
191+
}
192+
},
193+
"lint": {
194+
"builder": "@angular-devkit/build-angular:tslint",
195+
"options": {
196+
"tsConfig": [
197+
"projects/angular-calendar/tsconfig.lib.json",
198+
"projects/angular-calendar/tsconfig.spec.json"
199+
],
200+
"exclude": [
201+
"**/node_modules/**"
202+
]
203+
}
204+
}
205+
}
206+
}},
207+
"defaultProject": "angular-calender"
208+
}

0 commit comments

Comments
 (0)