You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: new code based no new sdk
* fix
* fix
* fixed bool
* bumped version to 1.1.0
* fix
* Update plugin display name and desc
* update go.mod/sum via `go mod tidy`
* Update LICENSE to avoid placeholder text
* per review feedback, update version to 2.0.0
* update CHANGELOG and package-lock to 2.0.0
---------
Co-authored-by: Jove Zhong <[email protected]>
RUN sed -i 's/<\/body><\/html>/<script src=\"http:\/\/localhost:35729\/livereload.js\"><\/script><\/body><\/html>/g' /usr/share/grafana/public/views/index.html
Copy file name to clipboardexpand all lines: .config/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ set up the Jest DOM for the testing library and to apply some polyfills. ([link
56
56
57
57
#### ESM errors with Jest
58
58
59
-
A common issue found with the current jest config involves importing an npm package which only offers an ESM build. These packages cause jest to error with `SyntaxError: Cannot use import statement outside a module`. To work around this we provide a list of known packages to pass to the `[transformIgnorePatterns](https://jestjs.io/docs/configuration#transformignorepatterns-arraystring)` jest configuration property. If need be this can be extended in the following way:
59
+
A common issue with the current jest config involves importing an npm package that only offers an ESM build. These packages cause jest to error with `SyntaxError: Cannot use import statement outside a module`. To work around this, we provide a list of known packages to pass to the `[transformIgnorePatterns](https://jestjs.io/docs/configuration#transformignorepatterns-arraystring)` jest configuration property. If need be, this can be extended in the following way:
60
60
61
61
```javascript
62
62
process.env.TZ='UTC';
@@ -142,7 +142,7 @@ We need to update the `scripts` in the `package.json` to use the extended Webpac
142
142
143
143
### Configure grafana image to use when running docker
144
144
145
-
By default `grafana-enterprise` will be used as the docker image for all docker related commands. If you want to override this behaviour simply alter the `docker-compose.yaml` by adding the following build arg `grafana_image`.
145
+
By default,`grafana-enterprise` will be used as the docker image for all docker related commands. If you want to override this behavior, simply alter the `docker-compose.yaml` by adding the following build arg `grafana_image`.
146
146
147
147
**Example:**
148
148
@@ -159,6 +159,6 @@ services:
159
159
grafana_image: ${GRAFANA_IMAGE:-grafana}
160
160
```
161
161
162
-
In this example we are assigning the environment variable `GRAFANA_IMAGE` to the build arg `grafana_image` with a default value of `grafana`. This will give you the possibility to set the value while running the docker-compose commands which might be convinent in some scenarios.
162
+
In this example, we assign the environment variable `GRAFANA_IMAGE` to the build arg `grafana_image` with a default value of `grafana`. This will allow you to set the value while running the dockercompose commands, which might be convenient in some scenarios.
0 commit comments