Skip to content

Commit 4a89411

Browse files
committed
Initial commit
0 parents  commit 4a89411

File tree

14 files changed

+1221
-0
lines changed

14 files changed

+1221
-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

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
strict-peer-dependencies=false
2+
auto-install-peers=true

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Add files here to ignore them from prettier formatting
2+
3+
/dist
4+
/coverage

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"singleQuote": true,
3+
"tabWidth": 4,
4+
"printWidth": 120,
5+
"htmlWhitespaceSensitivity": "ignore"
6+
}

.vscode/extensions.json

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

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Postprocessing
2+
3+
<a alt="Nx logo" href="https://nx.dev" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-logo.png" width="45"></a>
4+
5+
**This workspace has been generated by [Nx, a Smart, fast and extensible build system.](https://nx.dev)**
6+
7+
## Understand this workspace
8+
9+
Run `nx graph` to see a diagram of the dependencies of the projects.
10+
11+
## Remote caching
12+
13+
Run `npx nx connect-to-nx-cloud` to enable [remote caching](https://nx.app) and make CI faster.
14+
15+
## Further help
16+
17+
Visit the [Nx Documentation](https://nx.dev) to learn more.

apps/.gitkeep

Whitespace-only changes.

libs/.gitkeep

Whitespace-only changes.

nx.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"$schema": "./node_modules/nx/schemas/nx-schema.json",
3+
"npmScope": "postprocessing",
4+
"tasksRunnerOptions": {
5+
"default": {
6+
"runner": "nx/tasks-runners/default",
7+
"options": {
8+
"cacheableOperations": ["build", "lint", "test", "e2e"]
9+
}
10+
}
11+
},
12+
"targetDefaults": {
13+
"build": {
14+
"dependsOn": ["^build"],
15+
"inputs": ["production", "^production"]
16+
}
17+
},
18+
"namedInputs": {
19+
"default": ["{projectRoot}/**/*", "sharedGlobals"],
20+
"production": ["default"],
21+
"sharedGlobals": []
22+
}
23+
}

0 commit comments

Comments
 (0)