Skip to content

Commit

Permalink
⬆️ Actualizar Yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
1cgonza committed Sep 6, 2024
1 parent 3e76747 commit ef15890
Show file tree
Hide file tree
Showing 8 changed files with 8,367 additions and 6,033 deletions.
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true

[*.{js,json,yml}]
charset = utf-8
indent_style = space
indent_size = 2
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.yarn/** linguist-vendored
/.yarn/releases/* binary
/.yarn/plugins/**/* binary
/.pnp.* binary linguist-generated
2 changes: 1 addition & 1 deletion .github/workflows/despliegue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
source ~/.nvm/nvm.sh
cd ${{ secrets.RUTA }}
git pull origin main
yarn install --frozen-lockfile
yarn install --immutable
yarn server:stop
yarn build
yarn server:restart
13 changes: 9 additions & 4 deletions .github/workflows/estilo-codigo.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Estilo Código
name: 🐾 Estilo Código

on:
push:
Expand All @@ -14,17 +14,22 @@ jobs:

steps:
- name: 🐯 Obtener código del repositorio
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: 🐜 Activar Corepack
run: corepack enable

- name: 🐝 Usar Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'yarn'

- name: 🦒 Instalar dependencias
run: |
yarn install --frozen-lockfile
yarn install --immutable
- name: 👀 Buscar errores
run: yarn lint
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,13 @@ sw.*
.env
.vscode/

.output
.output

# Ver documentación de Yarn moderno (> v2): https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "arca-www",
"version": "1.0.0",
"packageManager": "yarn@4.4.1",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "nuxt dev",
Expand Down
14,356 changes: 8,330 additions & 6,026 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit ef15890

Please sign in to comment.