Skip to content

Commit 6ef19ff

Browse files
Initial commit
0 parents  commit 6ef19ff

13 files changed

+3293
-0
lines changed

.editorconfig

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

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

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
strict-peer-dependencies=false
2+
auto-install-peers=true

.prettierignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Add files here to ignore them from prettier formatting
2+
/dist
3+
/coverage

.prettierrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

.vscode/extensions.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["nrwl.angular-console", "esbenp.prettier-vscode"]
3+
}

README.md

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# QwikAngular
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+
## Generate code
8+
9+
If you happen to use Nx plugins, you can leverage code generators that might come with it.
10+
11+
Run `nx list` to get a list of available plugins and whether they have generators. Then run `nx list <plugin-name>` to see what generators are available.
12+
13+
Learn more about [Nx generators on the docs](https://nx.dev/plugin-features/use-code-generators).
14+
15+
## Running tasks
16+
17+
To execute tasks with Nx use the following syntax:
18+
19+
```
20+
nx <target> <project> <...options>
21+
```
22+
23+
You can also run multiple targets:
24+
25+
```
26+
nx run-many -t <target1> <target2>
27+
```
28+
29+
..or add `-p` to filter specific projects
30+
31+
```
32+
nx run-many -t <target1> <target2> -p <proj1> <proj2>
33+
```
34+
35+
Targets can be defined in the `package.json` or `projects.json`. Learn more [in the docs](https://nx.dev/core-features/run-tasks).
36+
37+
## Want better Editor Integration?
38+
39+
Have a look at the [Nx Console extensions](https://nx.dev/nx-console). It provides autocomplete support, a UI for exploring and running tasks & generators, and more! Available for VSCode, IntelliJ and comes with a LSP for Vim users.
40+
41+
## Ready to deploy?
42+
43+
Just run `nx build demoapp` to build the application. The build artifacts will be stored in the `dist/` directory, ready to be deployed.
44+
45+
## Set up CI!
46+
47+
Nx comes with local caching already built-in (check your `nx.json`). On CI you might want to go a step further.
48+
49+
- [Set up remote caching](https://nx.dev/core-features/share-your-cache)
50+
- [Set up task distribution across multiple machines](https://nx.dev/core-features/distribute-task-execution)
51+
- [Learn more how to setup CI](https://nx.dev/recipes/ci)
52+
53+
## Connect with us!
54+
55+
- [Join the community](https://nx.dev/community)
56+
- [Subscribe to the Nx Youtube Channel](https://www.youtube.com/@nxdevtools)
57+
- [Follow us on Twitter](https://twitter.com/nxdevtools)

nx.json

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"$schema": "./node_modules/nx/schemas/nx-schema.json",
3+
"affected": {
4+
"defaultBase": "master"
5+
},
6+
"tasksRunnerOptions": {
7+
"default": {
8+
"runner": "nx-cloud",
9+
"options": {
10+
"cacheableOperations": [
11+
"build",
12+
"lint",
13+
"test",
14+
"e2e"
15+
],
16+
"accessToken": "NmYxNjExYTQtNGQxOS00MjBlLWI0ODAtZTJiZDZhYjhmZGE5fHJlYWQtd3JpdGU="
17+
}
18+
}
19+
},
20+
"targetDefaults": {
21+
"build": {
22+
"dependsOn": [
23+
"^build"
24+
],
25+
"inputs": [
26+
"production",
27+
"^production"
28+
]
29+
}
30+
},
31+
"namedInputs": {
32+
"default": [
33+
"{projectRoot}/**/*",
34+
"sharedGlobals"
35+
],
36+
"production": [
37+
"default"
38+
],
39+
"sharedGlobals": []
40+
},
41+
"workspaceLayout": {
42+
"appsDir": "packages",
43+
"libsDir": "packages"
44+
}
45+
}

package.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "@qwik-angular/source",
3+
"version": "0.0.0",
4+
"license": "MIT",
5+
"scripts": {},
6+
"private": true,
7+
"dependencies": {},
8+
"devDependencies": {
9+
"@nx/js": "16.5.0",
10+
"@nx/workspace": "16.5.0",
11+
"nx": "16.5.0",
12+
"nx-cloud": "latest",
13+
"prettier": "^2.6.2",
14+
"typescript": "~5.1.3"
15+
}
16+
}

packages/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)