From 4d954973c9a15c71990edad564cff789b8f9b3db Mon Sep 17 00:00:00 2001 From: Jesse Mazzella Date: Fri, 25 Oct 2024 19:52:50 -0700 Subject: [PATCH] chore: more paths to fix --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 950fb2c930..cb0d220906 100644 --- a/package.json +++ b/package.json @@ -100,11 +100,11 @@ "start": "npx webpack serve --config ./.webpack/webpack.dev.mjs", "start:prod": "npx webpack serve --config ./.webpack/webpack.prod.mjs", "start:coverage": "npx webpack serve --config ./.webpack/webpack.coverage.mjs", - "lint:js": "eslint \"example/**/*.js\" \"src/**/*.js\" \"e2e/**/*.js\" \"openmct.js\" --max-warnings=0", + "lint:js": "eslint \"example/**/*.js\" \"src/**/*.js\" \"packages/e2e/**/*.js\" \"openmct.js\" --max-warnings=0", "lint:vue": "eslint \"src/**/*.vue\"", "lint:spelling": "cspell \"**/*.{js,md,vue}\" --show-context --gitignore --quiet", "lint": "run-p \"lint:js -- {1}\" \"lint:vue -- {1}\" \"lint:spelling -- {1}\" --", - "lint:fix": "eslint example src e2e --ext .js,.vue openmct.js --fix", + "lint:fix": "eslint example src packages/e2e --ext .js,.vue openmct.js --fix", "build:prod": "webpack --config ./.webpack/webpack.prod.mjs", "build:dev": "webpack --config ./.webpack/webpack.dev.mjs", "build:coverage": "webpack --config ./.webpack/webpack.coverage.mjs", @@ -112,7 +112,7 @@ "info": "npx envinfo --system --browsers --npmPackages --binaries --languages --markdown", "test": "karma start karma.conf.cjs", "test:debug": "KARMA_DEBUG=true karma start karma.conf.cjs", - "test:e2e": "npm test --workspace e2e", + "test:e2e": "npm test --workspace packages/e2e", "test:e2e:a11y": "npm test --workspace packages/e2e -- --config=playwright-visual-a11y.config.js --project=chrome --grep @a11y", "test:e2e:mobile": "npm test --workspace packages/e2e -- --config=playwright-mobile.config.js", "test:e2e:couchdb": "npm test --workspace packages/e2e -- --config=playwright-ci.config.js --project=chrome --grep @couchdb --workers=1",