Skip to content

Commit 611c3ba

Browse files
committed
chore: add package-lock to gitignore for apps that are not deployed
1 parent d9ebb38 commit 611c3ba

File tree

7 files changed

+22
-0
lines changed

7 files changed

+22
-0
lines changed

examples/coffee-warehouse-nextjs/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,6 @@ yarn-error.log*
3434
# typescript
3535
*.tsbuildinfo
3636
next-env.d.ts
37+
38+
# package-lock file
39+
package-lock.json

examples/kendo-react-build-a-sales-dashboard/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@
2121
npm-debug.log*
2222
yarn-debug.log*
2323
yarn-error.log*
24+
25+
# package-lock file
26+
package-lock.json

examples/kendo-react-nextjs/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,6 @@ yarn-error.log*
3333
# typescript
3434
*.tsbuildinfo
3535
next-env.d.ts
36+
37+
# package-lock file
38+
package-lock.json
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
client/node_modules
22
server/node_modules
33
**/kendo-ui-license**
4+
5+
# package-lock files
6+
client/package-lock.json
7+
server/package-lock.json
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
node_modules
22
build
3+
4+
# package-lock file
5+
package-lock.json
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
node_modules
2+
3+
# package-lock file
4+
package-lock.json
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
node_modules
2+
3+
# package-lock file
4+
package-lock.json

0 commit comments

Comments
 (0)