Skip to content

Commit 0515378

Browse files
takyyonKrrish
and
Krrish
authored
Add .npmrc to handle multiple registries across codebases (#7313)
* add npmrc * update gitignore * update registry * updste spacing * add react level npmrc * update lockfileversion --------- Co-authored-by: Krrish <[email protected]>
1 parent 93b9d30 commit 0515378

File tree

7 files changed

+33
-112
lines changed

7 files changed

+33
-112
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ testem.log
7070
# e2e
7171
/e2e/*.js
7272
/e2e/*.map
73-
.npmrc
7473

7574
#System Files
7675
.DS_Store
@@ -89,3 +88,6 @@ Thumbs.db
8988
#App data
9089
AzureFunctions/app_data
9190
/AzureFunctions/schemas
91+
92+
# NPM Registry
93+
!**/.npmrc

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.org

client-react/.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.org

client/.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.org

server/.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.org

server/package-lock.json

+25-110
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"dependencies": {
2323
"@azure/storage-blob": "^12.6.0",
2424
"@azure/storage-file": "^10.3.0",
25-
"@azure/web-apps-framework-detection": "^0.0.8",
2625
"@nestjs/common": "^8.0.9",
26+
"@azure/web-apps-framework-detection": "^0.0.8",
2727
"@nestjs/core": "^8.0.9",
2828
"@nestjs/platform-express": "^8.0.9",
2929
"applicationinsights": "^2.1.4",

0 commit comments

Comments
 (0)