Skip to content

Commit bc45cd7

Browse files
committed
Backup
1 parent 66f729b commit bc45cd7

File tree

114 files changed

+218376
-108463
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+218376
-108463
lines changed

.babelrc

-5
This file was deleted.

.editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
max_line_length = 120
11+
12+
[*.{js,ts,tsx,scss}]
13+
quote_type = single
14+
15+
[*.md]
16+
trim_trailing_whitespace = false

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

.eslintrc.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
...require('@grafana/toolkit/src/config/eslint.plugin')
3+
}

.eslintrc.json

-31
This file was deleted.

.flowcharting_env

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#node mode : docker or local
2+
NODEJS_MODE=docker
3+
GRAFANA_API_KEY=$GRAFANA_API_KEY
4+
FLOWCHARTING_BUILT_PATH=./built

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/workflows/node.js.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: Node.js CI
5+
6+
on:
7+
push:
8+
branches: [ master ]
9+
pull_request:
10+
branches: [ master ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
strategy:
18+
matrix:
19+
node-version: [14.19.1]
20+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
21+
22+
steps:
23+
- uses: actions/checkout@v3
24+
- name: Use Node.js ${{ matrix.node-version }}
25+
uses: actions/setup-node@v3
26+
with:
27+
node-version: ${{ matrix.node-version }}
28+
cache: 'npm'
29+
- run: npm ci
30+
- run: npm run build --if-present
31+
- run: npm test

.github/workflows/npm-gulp.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: NodeJS with Gulp
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-version: [14.x]
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
25+
- name: Build
26+
run: |
27+
npm install
28+
gulp

.gitignore

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
1-
/bower_components
2-
/externals
1+
32
/node_modules
4-
/externals
53
/.vscode
6-
/archives
7-
/public
8-
/coverage
9-
/archives
104
/dist
11-
125
yarn-error.log
136
key.txt
7+
coverage

.prettierignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.git
2+
.github
3+
dist/
4+
node_modules
5+

.prettierrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
...require("./node_modules/@grafana/toolkit/src/config/prettier.plugin.config.json"),
2+
...require('@grafana/toolkit/src/config/prettier.plugin.config.json'),
33
};

.tern-project

-12
This file was deleted.

.tslint.json

-76
This file was deleted.

0 commit comments

Comments
 (0)