Skip to content

Commit 7d78486

Browse files
committed
🏗️ upgrade dependencies + replace yarn with npm
1 parent 0ff67cd commit 7d78486

12 files changed

+4014
-2323
lines changed

.gitignore

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,20 @@ types/
1515
src/**/*.js
1616
src/**/*.js.map
1717

18-
# PNPM and NPM's lockfile.
19-
# We're using Yarn and it provide its own lockfile.
20-
package-lock.json
18+
# NPM's shrinkwrap.
19+
# We're using `package-lock.json` instead.
20+
npm-shrinkwrap.json
21+
22+
# Yarn's lockfile, Plug'n'Play, folder and settings.
23+
# We're using npm, and it provides its lockfile and settings.
24+
yarn.lock
25+
.pnp.*
26+
.yarn/
27+
.yarnrc
28+
.yarnrc.yaml
29+
30+
# pnpm's lockfile, workspace definitions and hooks.
31+
# We're using npm, and it provides its lockfile and settings.
2132
pnpm-lock.yaml
33+
pnpm-workspace.yaml
34+
pnpmfile.js

0 commit comments

Comments
 (0)