Skip to content

Commit

Permalink
chore: add package-lock to gitignore for apps that are not deployed
Browse files Browse the repository at this point in the history
  • Loading branch information
silviyaboteva committed Nov 29, 2024
1 parent ef1510d commit bd525af
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/coffee-warehouse-nextjs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

# package-lock file
package-lock.json
3 changes: 3 additions & 0 deletions examples/kendo-react-build-a-sales-dashboard/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# package-lock file
package-lock.json
3 changes: 3 additions & 0 deletions examples/kendo-react-nextjs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,6 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

# package-lock file
package-lock.json
4 changes: 4 additions & 0 deletions examples/kendo-react-nodejs-express/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
client/node_modules
server/node_modules
**/kendo-ui-license**

# package-lock files
client/package-lock.json
server/package-lock.json
3 changes: 3 additions & 0 deletions examples/kendo-react-sales-dashboard/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
node_modules
build

# package-lock file
package-lock.json
3 changes: 3 additions & 0 deletions examples/kendo-react-ssr/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
node_modules

# package-lock file
package-lock.json
3 changes: 3 additions & 0 deletions examples/kendo-react-stackblitz-app/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
node_modules

# package-lock file
package-lock.json

0 comments on commit bd525af

Please sign in to comment.