Fix: Plugin dev command should watch all decoupled plugins (#88160)

fix(frontend): update plugin scripts to watch all plugins and remove ignore flags
pull/88036/head
Jack Westbrook 1 year ago committed by GitHub
parent 9dfe961013
commit 7c5c62f617
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      package.json

@ -56,9 +56,9 @@
"betterer:stats": "ts-node --transpile-only --project ./scripts/cli/tsconfig.json ./scripts/cli/reportBettererStats.ts",
"betterer:issues": "ts-node --transpile-only --project ./scripts/cli/tsconfig.json ./scripts/cli/generateBettererIssues.ts",
"generate-icons-bundle-cache-file": "node ./scripts/generate-icon-bundle.js",
"plugin:build": "nx run-many -t build --projects='@grafana-plugins/*' --exclude \"@grafana-plugins/input-datasource\"",
"plugin:build:commit": "nx run-many -t build:commit --projects='@grafana-plugins/*' --exclude \"@grafana-plugins/input-datasource\"",
"plugin:build:dev": "nx run-many -t dev --projects='@grafana-plugins/*' --exclude \"@grafana-plugins/input-datasource\"",
"plugin:build": "nx run-many -t build --projects='@grafana-plugins/*'",
"plugin:build:commit": "nx run-many -t build:commit --projects='@grafana-plugins/*'",
"plugin:build:dev": "nx run-many -t dev --projects='@grafana-plugins/*' --maxParallel=100",
"generate-icons": "yarn workspace @grafana/saga-icons generate",
"generate-apis": "rtk-query-codegen-openapi ./scripts/generate-rtk-apis.ts"
},

Loading…
Cancel
Save