Skip to content

Commit 2df59a3

Browse files
authored
Merge pull request #72 from klerick/new-version-for-lib
New version for lib
2 parents d9cd83e + 59bcd7f commit 2df59a3

File tree

550 files changed

+39886
-60225
lines changed

Some content is hidden

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

550 files changed

+39886
-60225
lines changed

.eslintrc.json

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
2-
"root": true,
32
"ignorePatterns": ["**/*"],
4-
"plugins": ["@nx"],
53
"overrides": [
64
{
75
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
@@ -23,12 +21,10 @@
2321
},
2422
{
2523
"files": ["*.ts", "*.tsx"],
26-
"extends": ["plugin:@nx/typescript"],
2724
"rules": {}
2825
},
2926
{
3027
"files": ["*.js", "*.jsx"],
31-
"extends": ["plugin:@nx/javascript"],
3228
"rules": {}
3329
},
3430
{
@@ -37,11 +33,7 @@
3733
"jest": true
3834
},
3935
"rules": {}
40-
},
41-
{
42-
"files": "*.json",
43-
"parser": "jsonc-eslint-parser",
44-
"rules": {}
4536
}
46-
]
37+
],
38+
"extends": ["./.eslintrc.base.json"]
4739
}

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# See http://help.github.com/ignore-files/ for more about ignoring files.
22

33
# compiled output
4-
/dist
5-
/tmp
4+
dist
5+
tmp
66
/out-tsc
77

88
# dependencies
@@ -38,4 +38,5 @@ testem.log
3838
.DS_Store
3939
Thumbs.db
4040

41+
.nx/cache
4142
.angular

.husky/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Add files here to ignore them from prettier formatting
2-
32
/dist
43
/coverage
4+
/.nx/cache
5+
.angular

.verdaccio/config.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# path to a directory with all packages
2+
storage: ../tmp/local-registry/storage
3+
4+
# a list of other known repositories we can talk to
5+
uplinks:
6+
npmjs:
7+
url: https://registry.npmjs.org/
8+
maxage: 60m
9+
10+
packages:
11+
'**':
12+
# give all users (including non-authenticated users) full access
13+
# because it is a local registry
14+
access: $all
15+
publish: $all
16+
unpublish: $all
17+
18+
# if package is not available locally, proxy requests to npm registry
19+
proxy: npmjs
20+
21+
# log settings
22+
logs:
23+
type: stdout
24+
format: pretty
25+
level: warn
26+
27+
publish:
28+
allow_offline: true # set offline to true to allow publish offline

.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+
"nrwl.angular-console",
4+
"esbenp.prettier-vscode",
5+
"firsttris.vscode-jest-runner"
6+
]
7+
}

LICENSE

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
Tools to implement JSON API, such as, end point, query params, body params, validation and transformation response.
1616
</p>
1717

18-
- *[json-api-nestjs](https://github.com/klerick/nestjs-json-api/tree/master/libs/json-api-nestjs)* - plugin for create CRUD overs JSON API
19-
- *[json-api-nestjs-sdk](https://github.com/klerick/nestjs-json-api/tree/master/libs/json-api-nestjs-sdk)* - tool for client, call api over *json-api-nestjs*
18+
- *[json-api-nestjs](https://github.com/klerick/nestjs-json-api/tree/master/libs/json-api/json-api-nestjs)* - plugin for create CRUD overs JSON API
19+
- *[json-api-nestjs-sdk](https://github.com/klerick/nestjs-json-api/tree/master/libs/json-api/json-api-nestjs-sdk)* - tool for client, call api over *json-api-nestjs*
2020
- *json-api-nestjs-acl* - tool for acl over *json-api-nestjs*(coming soon...)
2121
## Installation
2222

apps/example-angular-client/.eslintrc.json

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

apps/example-angular-client/jest.config.ts

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

0 commit comments

Comments
 (0)