chore: migrate from npm to pnpm

This commit is contained in:
2026-05-13 10:17:18 +07:00
parent 31d55b4bf4
commit 35c97c77b2
4 changed files with 1538 additions and 2356 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
FROM node:22-alpine
RUN corepack enable && corepack prepare pnpm@11.1.1 --activate
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile
COPY . .
CMD ["node", "server.js"]
-2354
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -2,6 +2,7 @@
"name": "store-scraper",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@11.1.1",
"description": "Host [google-play-scraper](https://github.com/facundoolano/google-play-scraper) and [app-store-scraper](https://github.com/facundoolano/app-store-scraper)",
"main": "index.js",
"scripts": {
+1534
View File
File diff suppressed because it is too large Load Diff