Skip to content

Commit 3962446

Browse files
author
Tomas Familia
committed
remove other pnpm references to change it to bun
1 parent 1712185 commit 3962446

5 files changed

Lines changed: 11 additions & 12 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ Temporary Items
202202
npm-debug.log*
203203
yarn-debug.log*
204204
yarn-error.log*
205-
.pnpm-debug.log*
205+
206206

207207
# local env files
208208
.env*.local

.husky/pre-commit

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pnpm lint-staged
2-
pnpm install --frozen-lockfile
1+
bun lint-staged
2+
bun install --frozen-lockfile

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name": "Next.js: debug server-side",
66
"type": "node-terminal",
77
"request": "launch",
8-
"command": "pnpm run dev"
8+
"command": "bun run dev"
99
},
1010
{
1111
"name": "Next.js: debug client-side",
@@ -17,7 +17,7 @@
1717
"name": "Next.js: debug full stack",
1818
"type": "node-terminal",
1919
"request": "launch",
20-
"command": "pnpm run dev",
20+
"command": "bun run dev",
2121
"serverReadyAction": {
2222
"pattern": "started server on .+, url: (https?://.+)",
2323
"uriFormat": "%s",

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ docker build --target runner -t cuenta-unica .
5050
docker run -d cuenta-unica
5151
```
5252

53-
La segunda es utilizando `pnpm`:
53+
La segunda es utilizando `bun`:
5454

5555
```bash
5656
git clone https://github.com/opticrd/cuenta-unica-registry.git
5757
cd cuenta-unica-registry
58-
pnpm install
59-
pnpm start
58+
bun install
59+
bun start
6060
```
6161

6262
### Dependencias
@@ -128,7 +128,6 @@ Alternativamente, puede ir a la esquina inferior derecha de la ventana de VS Cod
128128

129129
Tener en cuenta que detener el contenedor no lo eliminará; simplemente lo detiene. Si desea eliminar el contenedor por completo, puede hacerlo usando los comandos de Docker en la terminal o usando una herramienta GUI de Docker.
130130

131-
132131
## Autor/es
133132

134133
- **Gustavo Valverde** - _Product Manager_ - [@gustavovalverde](https://github.com/gustavovalverde)

next.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ const nextConfig: NextConfig = {
88
'@aws-amplify/adapter-nextjs',
99
'aws-amplify',
1010
'aws-crt',
11-
'dtrace-provider'
11+
'dtrace-provider',
1212
],
1313

1414
output: 'standalone',
1515

1616
turbopack: {
1717
resolveAlias: {
18-
xstate: './node_modules/.pnpm/xstate@4.38.3/node_modules/xstate',
18+
xstate: './node_modules/xstate',
1919
},
2020
},
2121
};
@@ -36,4 +36,4 @@ export default withSentryConfig(nextConfig, {
3636
sourcemaps: {
3737
disable: process.env.APP_ENV !== 'production',
3838
},
39-
});
39+
});

0 commit comments

Comments
 (0)