Skip to content

Commit 0b7be2c

Browse files
Merge pull request #2805 from OctopusDeploy/sf/resolve-pnpm-issue
Resolve PNPM issue
2 parents 99e6a61 + 5d6cefd commit 0b7be2c

File tree

2 files changed

+427
-414
lines changed

2 files changed

+427
-414
lines changed

package.json

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,22 @@
1212
"dev": "npm-run-all --parallel dev:img dev:astro dev:watch",
1313
"dev:img": "node ./src/themes/octopus/utilities/img.mjs",
1414
"dev:astro": "astro dev",
15-
"dev:watch": "pnpm watch",
15+
"dev:watch": "onchange 'src/**/*.{js,mjs,ts,astro,css}' 'public/docs/js/**/*.js' 'public/docs/css/**/*.css' -- prettier --write --plugin=prettier-plugin-astro {{changed}}",
16+
"astro": "astro",
17+
"build": "astro build",
1618
"crawl": "linkinator ./dist --skip \"^(?!http://localhost)\" --recurse --verbosity error",
17-
"test": "astro build && npx playwright install --with-deps && npx playwright test",
19+
"format": "prettier --write --plugin=prettier-plugin-astro 'src/**/*.{js,mjs,ts,astro,css}' 'public/docs/js/**/*.js' 'public/docs/css/**/*.css'",
20+
"preview": "astro preview",
1821
"spellcheck": "git fetch origin main:refs/remotes/origin/main && git diff origin/main --name-only --diff-filter=ACMRTUXB | cspell --no-must-find-files --file-list stdin",
1922
"spellcheck-all": "cspell \"**/*.{md,mdx}\"",
20-
"build": "astro build",
21-
"preview": "astro preview",
22-
"astro": "astro",
23-
"css": "robocopy ./public/docs/css/ ./dist/docs/css/ /mir && robocopy ./public/docs/js/ ./dist/docs/js/ /mir",
24-
"format": "prettier --write --plugin=prettier-plugin-astro 'src/**/*.{js,mjs,ts,astro,css}' 'public/docs/js/**/*.js' 'public/docs/css/**/*.css'",
25-
"watch": "onchange 'src/**/*.{js,mjs,ts,astro,css}' 'public/docs/js/**/*.js' 'public/docs/css/**/*.css' -- prettier --write --plugin=prettier-plugin-astro {{changed}}",
26-
"thin": "node ./src/themes/octopus/utilities/dist-thinner.mjs"
23+
"thin": "node ./src/themes/octopus/utilities/dist-thinner.mjs",
24+
"test": "astro build && npx playwright install --with-deps && npx playwright test",
25+
"watch": "onchange 'src/**/*.{js,mjs,ts,astro,css}' 'public/docs/js/**/*.js' 'public/docs/css/**/*.css' -- prettier --write --plugin=prettier-plugin-astro {{changed}}"
2726
},
2827
"dependencies": {
29-
"@astrojs/mdx": "^4.3.3",
30-
"astro": "^5.12.9",
31-
"astro-accelerator-utils": "^0.3.50",
28+
"@astrojs/mdx": "^4.3.4",
29+
"astro": "^5.13.5",
30+
"astro-accelerator-utils": "^0.3.53",
3231
"cspell": "^8.19.4",
3332
"glob": "^11.0.3",
3433
"gray-matter": "^4.0.3",
@@ -42,8 +41,8 @@
4241
"sharp": "^0.33.5"
4342
},
4443
"devDependencies": {
45-
"@pnpm/exe": "^10.14.0",
46-
"@playwright/test": "^1.54.2",
44+
"@playwright/test": "^1.55.0",
45+
"@pnpm/exe": "^10.13.1",
4746
"csv-parse": "^5.6.0",
4847
"npm-run-all": "^4.1.5",
4948
"onchange": "^7.1.0",

0 commit comments

Comments
 (0)