Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ jobs:
- run: node --version
- run: npm --version

- name: Install npm/yarn dependencies
- name: Install npm dependencies
run: |
cd with-i18n-translate
yarn install
npm install

- name: Prod Build for GitHub demo website
run: |
cd with-i18n-translate
yarn build
npm run build

- name: Deploy to gh-pages
if: github.ref == 'refs/heads/main'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "cd with-i18n-translate && yarn install && yarn dev"
"dev": "cd with-i18n-translate && npm install && npm run dev"
},
"private": false,
"dependencies": {}
Expand Down
2 changes: 1 addition & 1 deletion single-locale-without-i18n/.vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
{
"label": "Start Bootstrap 5 Demo Page",
"type": "shell",
"command": "yarn dev",
"command": "npm run dev",
"options": {
"cwd": "${workspaceFolder}/with-i18n-translate",
},
Expand Down
Loading