chore: switch from yarn to npm, update dependencies

This commit is contained in:
Lucien Cartier-Tilet 2024-09-21 12:15:07 +02:00
parent 30892f9ca0
commit f61b58f9c7
Signed by: phundrak
GPG Key ID: 347803E8073EACE0
4 changed files with 4901 additions and 3232 deletions

View File

@ -14,12 +14,12 @@ jobs:
version: 29.1 version: 29.1
- name: "Export org to md" - name: "Export org to md"
run: emacs -Q --script export.el run: emacs -Q --script export.el
- uses: actions/setup-node@v3 - uses: actions/setup-node@v4
with: with:
node-version: 18.x node-version: 20.x
- run: corepack enable - run: corepack enable
- run: yarn install --frozen-lockfile - run: npm ci
- run: yarn build - run: npm run build
- name: "Deploy to remote server" - name: "Deploy to remote server"
uses: appleboy/scp-action@v0.1.4 uses: appleboy/scp-action@v0.1.4
with: with:

4883
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -3,21 +3,26 @@
"version": "1.0.0", "version": "1.0.0",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": {
"dev": "vuepress dev docs",
"build": "vuepress build docs"
},
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://labs.phundrak.com/phundrak/conlang.phundrak.com" "url": "https://labs.phundrak.com/phundrak/conlang.phundrak.com"
}, },
"author": "Lucien Cartier-Tilet <lucien@phundrak.com>", "author": "Lucien Cartier-Tilet <lucien@phundrak.com>",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"private": true,
"devDependencies": { "devDependencies": {
"@vuepress/bundler-vite": "^2.0.0-rc.2", "@vuepress/bundler-vite": "2.0.0-rc.14",
"@vuepress/theme-default": "^2.0.0-rc.2", "@vuepress/plugin-umami-analytics": "2.0.0-rc.41",
"vuepress": "2.0.0-rc.2", "@vuepress/theme-default": "2.0.0-rc.41",
"vuepress-plugin-search-pro": "^2.0.0-rc.16" "vuepress": "2.0.0-rc.14",
"vuepress-plugin-search-pro": "2.0.0-rc.52"
}, },
"packageManager": "yarn@4.1.1" "dependencies": {
"less": "^4.2.0",
"nord": "^0.2.1"
},
"scripts": {
"dev": "vuepress dev docs",
"build": "vuepress build docs"
}
} }

3219
yarn.lock

File diff suppressed because it is too large Load Diff