Skip to content

Commit 2f5140f

Browse files
committed
initial commit
0 parents  commit 2f5140f

16 files changed

+4503
-0
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://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+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.gitignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+
8+
# dependencies
9+
/node_modules
10+
11+
# IDEs and editors
12+
/.idea
13+
.project
14+
.classpath
15+
.c9/
16+
*.launch
17+
.settings/
18+
*.sublime-workspace
19+
20+
# IDE - VSCode
21+
.vscode/*
22+
!.vscode/settings.json
23+
!.vscode/tasks.json
24+
!.vscode/launch.json
25+
!.vscode/extensions.json
26+
27+
# misc
28+
/.sass-cache
29+
/connect.lock
30+
/coverage
31+
/libpeerconnection.log
32+
npm-debug.log
33+
yarn-error.log
34+
testem.log
35+
/typings
36+
37+
# System Files
38+
.DS_Store
39+
Thumbs.db

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Add files here to ignore them from prettier formatting

.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

.vscode/extensions.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"recommendations": [
3+
"nrwl.angular-console",
4+
"angular.ng-template",
5+
"ms-vscode.vscode-typescript-tslint-plugin",
6+
"esbenp.prettier-vscode"
7+
]
8+
}

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# AngularSlides
2+
3+
This project was generated using [Nx](https://nx.dev).
4+
5+
<p align="center"><img src="https://raw.githubusercontent.com/nrwl/nx/master/nx-logo.png" width="450"></p>
6+
7+
🔎 **Nx is a set of Angular CLI power-ups for modern development.**
8+
9+
## Quick Start & Documentation
10+
11+
[30-minute video showing all Nx features](https://nx.dev/getting-started/what-is-nx)
12+
13+
[Interactive tutorial](https://nx.dev/tutorial/01-create-application)
14+
15+
## Generate your first application
16+
17+
Run `ng g app myapp` to generate an application. When using Nx, you can create multiple applications and libraries in the same CLI workspace.
18+
19+
## Development server
20+
21+
Run `ng serve myapp` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
22+
23+
## Code scaffolding
24+
25+
Run `ng generate component component-name --project=myapp` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
26+
27+
## Build
28+
29+
Run `ng build myapp` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
30+
31+
## Running unit tests
32+
33+
Run `ng test` to execute the unit tests via [Jest](https://karma-runner.github.io).
34+
35+
## Running end-to-end tests
36+
37+
Run `ng e2e` to execute the end-to-end tests via [Cypress](http://www.protractortest.org/).
38+
39+
## Further help
40+
41+
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: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "",
5+
"projects": {},
6+
"cli": {
7+
"warnings": {
8+
"typescriptMismatch": false,
9+
"versionMismatch": false
10+
},
11+
"defaultCollection": "@nrwl/schematics"
12+
},
13+
"schematics": {}
14+
}

apps/.gitkeep

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

libs/.gitkeep

Whitespace-only changes.

nx.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"npmScope": "angular-slides",
3+
"implicitDependencies": {
4+
"angular.json": "*",
5+
"package.json": "*",
6+
"tsconfig.json": "*",
7+
"tslint.json": "*",
8+
"nx.json": "*"
9+
},
10+
"projects": {}
11+
}

0 commit comments

Comments
 (0)