mirror of
https://github.com/appium/appium.git
synced 2025-12-20 09:29:49 -06:00
11 lines
393 B
JavaScript
11 lines
393 B
JavaScript
module.exports = {
|
|
'*.(js|ts)': ['eslint --fix', 'prettier --write'],
|
|
'appium-config-schema.js': () => [
|
|
'npm run --workspace=./packages/schema build',
|
|
'git add -A packages/schema/lib/appium-config.schema.json',
|
|
'npm run --workspace=./packages/types build',
|
|
'git add -A packages/types/lib/appium-config.ts',
|
|
],
|
|
'!(package|package-lock)*.json': ['prettier --write'],
|
|
};
|