Skip to content

Commit

Permalink
lockfiles and test packagemanager
Browse files Browse the repository at this point in the history
  • Loading branch information
BorghildSelle committed Sep 12, 2024
1 parent 77f2f6e commit 3e6430c
Show file tree
Hide file tree
Showing 10 changed files with 6,477 additions and 8,600 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/DEV-web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ jobs:
- name: Install pnpm 📦
id: install-pnpm
uses: pnpm/action-setup@v4
with:
version: '8.5.1'
- name: Cache pnpm modules 💾
uses: actions/setup-node@v3
with:
Expand Down
3 changes: 2 additions & 1 deletion e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"selenium-webdriver": "^4.0.0-beta.1"
},
"scripts": {
"test": "node ./tests/equinor-news-WCAG-Chrome.js"
"test": "node ./tests/equinor-news-WCAG-Chrome.js",
"clean": "rm -rf node_modules pnpm-lock.yaml"
},
"devDependencies": {
"@percy/cli": "^1.0.0-beta.47",
Expand Down
818 changes: 244 additions & 574 deletions e2e/pnpm-lock.yaml

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"engines": {
"pnpm": ">=6"
},
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"setup-project": "pnpm m i",
Expand All @@ -29,7 +30,8 @@
"v3:dev": "pnpm sanityv3 dev",
"v3:docker": "DOCKER_BUILDKIT=1 docker build --build-arg ARG_SANITY_DATASET=global-development -t envis/v3 -f sanityv3/Dockerfile .",
"v3:run": "docker run -p 3333:3333 envis/v3",
"lint-staged": "lint-staged -c ./lint-staged-config.js"
"lint-staged": "lint-staged -c ./lint-staged-config.js",
"clean": "rm -rf node_modules pnpm-lock.yaml && pnpm --filter ./web clean && pnpm --filter ./sanityv3 clean && pnpm --filter ./e2e clean && pnpm pnpm --filter ./search clean"
},
"dependencies": {
"husky": "^7.0.4",
Expand Down
3 changes: 2 additions & 1 deletion sanityv3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"start": "sanity start",
"build": "sanity build",
"deploy": "sanity deploy",
"deploy-graphql": "sanity graphql deploy"
"deploy-graphql": "sanity graphql deploy",
"clean": "rm -rf node_modules pnpm-lock.yaml"
},
"keywords": [
"sanity"
Expand Down
6,936 changes: 3,024 additions & 3,912 deletions sanityv3/pnpm-lock.yaml

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion search/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"azurite": "azurite",
"prestart": "npm run build",
"start": "func start",
"test": "jest"
"test": "jest",
"clean": "rm -rf node_modules pnpm-lock.yaml"
},
"keywords": [
"search",
Expand Down
1,963 changes: 983 additions & 980 deletions search/pnpm-lock.yaml

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"test:watch": "jest --watch",
"preinstall": "npx only-allow pnpm",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"update:searchindex": "ts-node --project tsconfig.json ./scripts/create-index"
"update:searchindex": "ts-node --project tsconfig.json ./scripts/create-index",
"clean": "rm -rf node_modules pnpm-lock.yaml"
},
"dependencies": {
"@algolia/cache-browser-local-storage": "^4.22.1",
Expand Down
Loading

0 comments on commit 3e6430c

Please sign in to comment.