Skip to content

Commit

Permalink
Merge pull request #827 from gperdomor/feature/nx-16.5.0
Browse files Browse the repository at this point in the history
chore: bump nrwl nx from 16.4.2 to v16.5.0
  • Loading branch information
gperdomor authored Jul 8, 2023
2 parents 8d8352e + 8c78fc7 commit 576dbd0
Show file tree
Hide file tree
Showing 9 changed files with 2,746 additions and 574 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
20
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Add files here to ignore them from prettier formatting
/dist
/coverage
/tmp
28 changes: 28 additions & 0 deletions .verdaccio/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# path to a directory with all packages
storage: ../tmp/local-registry/storage

# a list of other known repositories we can talk to
uplinks:
npmjs:
url: https://registry.npmjs.org/
maxage: 60m

packages:
'**':
# give all users (including non-authenticated users) full access
# because it is a local registry
access: $all
publish: $all
unpublish: $all

# if package is not available locally, proxy requests to npm registry
proxy: npmjs

# log settings
logs:
type: stdout
format: pretty
level: warn

publish:
allow_offline: true # set offline to true to allow publish offline
6 changes: 3 additions & 3 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"npmScope": "nx-tools",
"tasksRunnerOptions": {
"default": {
"runner": "nx-cloud",
Expand All @@ -16,7 +15,7 @@
"inputs": ["production", "^production"]
},
"lint": {
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
"inputs": ["default", "{workspaceRoot}/.eslintrc.json", "{workspaceRoot}/.eslintignore"]
},
"test": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"]
Expand All @@ -29,7 +28,8 @@
"!{projectRoot}/.eslintrc.json",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
"!{projectRoot}/tsconfig.spec.json",
"!{projectRoot}/jest.config.[jt]s"
"!{projectRoot}/jest.config.[jt]s",
"!{projectRoot}/src/test-setup.[jt]s"
],
"sharedGlobals": []
},
Expand Down
Loading

0 comments on commit 576dbd0

Please sign in to comment.