Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/.cprc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "7.0.0",
"version": "7.6.1-canary.2646.26289611329.0",
Comment thread
itsmylife marked this conversation as resolved.
Outdated
"features": {}
}
13 changes: 8 additions & 5 deletions .config/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,18 @@
"alwaysStrict": true,
"declaration": false,
"rootDir": "../src",
"baseUrl": "../src",
"typeRoots": ["../node_modules/@types"],
"resolveJsonModule": true
"resolveJsonModule": true,
"paths": {
"*": ["../src/*"]
}
},
"ts-node": {
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"esModuleInterop": true
"module": "nodenext",
"target": "es2022",
"esModuleInterop": true,
"moduleResolution": "nodenext"
},
"transpileOnly": true
},
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24
24.15.0
498 changes: 249 additions & 249 deletions .yarn/releases/yarn-4.14.1.cjs → .yarn/releases/yarn-4.15.0.cjs

Large diffs are not rendered by default.

21 changes: 19 additions & 2 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
nodeLinker: node-modules
# Do not under any circumstances add approvedGitRepositories to this file.
# It is a security risk that would allow arbitrary code execution both locally and in CI.
# https://yarnpkg.com/configuration/yarnrc#approvedGitRepositories
defaultSemverRangePrefix: ""

yarnPath: .yarn/releases/yarn-4.14.1.cjs
enableImmutableInstalls: true

enableScripts: false

nmHoistingLimits: workspaces

nodeLinker: node-modules

npmMinimalAgeGate: 4320

# Bypass minimal age gate for specific grafana packages to make feature development easier.
npmPreapprovedPackages:
- "@grafana/*"

npmRegistryServer: "https://registry.npmjs.org"

yarnPath: .yarn/releases/yarn-4.15.0.cjs
3 changes: 1 addition & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
module github.com/grafana/github-datasource

go 1.26.1

go 1.26.3
require (
github.com/bradleyfalzon/ghinstallation/v2 v2.18.0
github.com/google/go-github/v84 v84.0.0
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,8 @@
"i18next": "26.0.8",
"dompurify": "3.4.2"
},
"packageManager": "yarn@4.14.1"
"packageManager": "yarn@4.15.0",
"engines": {
"node": ">=24"
}
}
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Manual changes might be lost - proceed with caution!

__metadata:
version: 9
version: 10
cacheKey: 10c0

"@adobe/css-tools@npm:^4.4.0":
Expand Down
Loading