Skip to content

Commit

Permalink
fix: revoke nx access token
Browse files Browse the repository at this point in the history
  • Loading branch information
HyungJu committed Apr 30, 2024
1 parent b3e6925 commit 7abb746
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,5 @@ Thumbs.db
.nx/cache

server/.env

nx-cloud.env
20 changes: 12 additions & 8 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"pluginsConfig": {
"@nx/js": {
"analyzeSourceFiles": true
}
},
"extends": "nx/presets/npm.json",
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"nxCloudAccessToken": "YjU4MmMwZjgtNDcyNi00NDRkLWIyMDktOTQ2N2FiN2U5ZjJifHJlYWQtd3JpdGU=",
"workspaceLayout": {
"libsDir": "libs",
"appsDir": "apps"
Expand All @@ -25,13 +29,13 @@
"targetDefaults": {
"@nx/js:tsc": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["default", "^default"]
}
},
"pluginsConfig": {
"@nx/js": {
"analyzeSourceFiles": true
"dependsOn": [
"^build"
],
"inputs": [
"default",
"^default"
]
}
}
}

0 comments on commit 7abb746

Please sign in to comment.