Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency glob to v11 #427

Merged
merged 14 commits into from
Nov 26, 2024
Merged
2 changes: 1 addition & 1 deletion .config/webpack/utils.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fs from 'fs';
import path from 'path';
import util from 'util';
import glob from 'glob';
import { glob } from 'glob';
import { SOURCE_DIR } from './constants';

const globAsync = util.promisify(glob);
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buind_n_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable --prefer-offline
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/is-compatible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
cache: 'yarn'
- name: Check installed packages
run: yarn list --depth=0
- name: Clear Yarn cache
run: yarn cache clean
abdullah-cognite marked this conversation as resolved.
Show resolved Hide resolved
- name: Install dependencies
run: yarn install --immutable --prefer-offline
- name: Build plugin
run: yarn build
run: yarn build
- name: Compatibility check
run: npx @grafana/levitate@latest is-compatible --path src/module.ts --target @grafana/data,@grafana/ui,@grafana/runtime
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
cache: 'yarn'

- name: Setup Go environment
Expand Down
31 changes: 18 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@
"@grafana/e2e-selectors": "11.3.0",
"@grafana/eslint-config": "^6.0.0",
"@grafana/tsconfig": "^2.0.0",
"@swc/core": "^1.2.144",
"@swc/core": "^1.3.90",
"@swc/helpers": "^0.5.0",
"@swc/jest": "^0.2.23",
"@swc/jest": "^0.2.26",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.2",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.188",
"@types/ms": "^0.7.31",
"@types/node": "^20.0.0",
"@types/node": "^20.8.7",
"@types/react": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
Expand All @@ -57,24 +57,26 @@
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-webpack-plugin": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.0",
"glob": "^8.0.3",
"glob": "^10.2.7",
"identity-obj-proxy": "3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass": "1.80.6",
"sass-loader": "14.2.1",
"style-loader": "3.3.4",
"swc-loader": "^0.2.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.5.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.1.0",
"typescript": "~5.6.0",
"webpack": "^5.69.1",
"webpack-cli": "^5.0.2",
"webpack-livereload-plugin": "^3.0.2"
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-livereload-plugin": "^3.0.2",
"wrap-ansi": "^9.0.0",
"wrap-ansi-cjs": "^8.0.0"
},
"husky": {
"hooks": {
Expand All @@ -97,6 +99,9 @@
"*/**/grammar.ts"
]
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@grafana/data": "^11.3.0",
Expand All @@ -116,4 +121,4 @@
"react": "18.3.1",
"react-dom": "18.3.1"
}
}
}
Loading