Skip to content

Commit

Permalink
Chore: Update package dependencies to latest (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
DHedgecock authored Feb 8, 2023
1 parent 4f21806 commit f860ee3
Show file tree
Hide file tree
Showing 10 changed files with 17,601 additions and 4,571 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v2.4.0
- name: Use Node.js 14.x
- name: Use Node.js 16.x
uses: actions/setup-node@v2.5.1
with:
node-version: 14.x
node-version: 16.x
cache: 'yarn'
- run: yarn install
- run: make test
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
- name: Use Node.js 14.x
- name: Use Node.js 16.x
uses: actions/setup-node@v2.5.1
with:
node-version: 14.x
node-version: 16.x
cache: 'yarn'
- run: yarn install
- run: make build
Expand Down
6 changes: 1 addition & 5 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,9 @@ module.exports = function(grunt) {
},

babel: {
options: {
sourceMap: true,
presets: ['@babel/preset-env']
},
dist: {
options: {
plugins: ['transform-es2015-modules-systemjs', 'transform-es2015-for-of']
plugins: []
},
files: [{
cwd: 'src',
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ install:
$(YARN)

.PHONY: build
build: install
build:
$(GRUNT)
$(WEBPACK)
./grafana8-workaround.sh
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ Currently, only `$__range` and `$__interval` are supported.
It's possible to use the `docker-compose.yml` file in this repo to quickly install this plugin in a new instance of Grafana for development in testing. The `docker-compose.yml` configuration automatically provisions the plugin and creates a default datasource using the files in the `provisioning` directory.

```
# install dependencies
$ make install
# build assets from source
$ make build
Expand Down
3 changes: 3 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: [["@babel/preset-env", { targets: { node: "current" } }]],
};
Loading

0 comments on commit f860ee3

Please sign in to comment.