Skip to content

Commit eb93d4e

Browse files
author
Michael Recachinas
committedFeb 9, 2021
Update config and rc files
1 parent 6a2acbb commit eb93d4e

File tree

8 files changed

+3183
-3543
lines changed

8 files changed

+3183
-3543
lines changed
 

‎.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
doc/*
2+
/**/*.d.ts

‎.eslintrc

-38
This file was deleted.

‎.github/workflows/docgen.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build and Deploy Docs
2+
on: [push]
3+
jobs:
4+
build-and-deploy:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout 🛎️
8+
uses: actions/checkout@v2
9+
with:
10+
persist-credentials: false
11+
12+
- name: Install and Build 🔧
13+
run: |
14+
npm install
15+
npm run generate-docs
16+
ln -s ./doc/react-sigplot/latest
17+
- name: Set doc version
18+
id: vars
19+
run: echo ::set-output name=doc_version::$(grep '"version"' package.json | cut -d '"' -f 4)
20+
- name: Deploy 🚀
21+
uses: peaceiris/actions-gh-pages@v3
22+
with:
23+
github_token: ${{ secrets.GITHUB_TOKEN }}
24+
publish_dir: ./doc/sigfile/${{ steps.vars.outputs.doc_version }}

‎.github/workflows/npm_publish.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3+
4+
name: Node.js Package
5+
6+
on:
7+
release:
8+
types: [created]
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v1
16+
with:
17+
node-version: 12
18+
- run: npm ci
19+
- run: npm test
20+
publish-npm:
21+
needs: build
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v2
25+
- uses: actions/setup-node@v1
26+
with:
27+
node-version: 12
28+
registry-url: https://registry.npmjs.org/
29+
- run: npm ci
30+
- run: npm publish
31+
env:
32+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
doc/
2+
13
.idea/
24
dist/
35

‎.jsdoc.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"tags": {
3+
"allowUnknownTags": true,
4+
"dictionaries": ["jsdoc"]
5+
},
6+
"source": {
7+
"include": ["src", "package.json", "README.md"],
8+
"includePattern": ".js$",
9+
"excludePattern": "(node_modules/|doc)"
10+
},
11+
"plugins": ["plugins/markdown"],
12+
"opts": {
13+
"destination": "./doc",
14+
"encoding": "utf8",
15+
"private": true,
16+
"recurse": true,
17+
"template": "./node_modules/minami"
18+
}
19+
}

‎package-lock.json

+3,028-3,502
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+76-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,14 @@
2222
"src"
2323
],
2424
"scripts": {
25-
"clean": "rm -rf ./dist && mkdir ./dist",
26-
"lint": "./node_modules/eslint/bin/eslint.js src/*.js __tests__/*.js *.js",
27-
"build": "npm run clean && npm run lint && ./node_modules/webpack/bin/webpack.js --progress",
25+
"build": "npm run clean && npm run lint && npx webpack --progress",
26+
"clean": "rm -rf ./dist",
27+
"eslint": "npx eslint . --fix --ignore-path .gitignore",
28+
"eslint:check": "npx eslint . --ignore-path .gitignore",
29+
"generate-docs": "rm -rf ./doc/; npx jsdoc --configure .jsdoc.json --verbose",
30+
"lint": "npm run prettier && npm run eslint",
31+
"prettier": "npx prettier --ignore-path .gitignore --write \"**/*{.js,.css,.json}\"",
32+
"prettier:check": "npx prettier --check --ignore-path .gitignore --write \"**/*{.js,.css,.json}\"",
2833
"test": "jest --coverage"
2934
},
3035
"dependencies": {
@@ -35,6 +40,71 @@
3540
"jest-canvas-mock"
3641
]
3742
},
43+
"babel": {
44+
"presets": [
45+
[
46+
"@babel/preset-env",
47+
{
48+
"targets": {
49+
"node": "current"
50+
}
51+
}
52+
]
53+
],
54+
"plugins": [
55+
"@babel/plugin-proposal-class-properties"
56+
]
57+
},
58+
"eslintConfig": {
59+
"env": {
60+
"browser": true,
61+
"node": true,
62+
"es2017": true,
63+
"jest": true
64+
},
65+
"globals": {
66+
"browser": true
67+
},
68+
"extends": [
69+
"eslint:recommended",
70+
"plugin:react/recommended",
71+
"prettier"
72+
],
73+
"parser": "babel-eslint",
74+
"parserOptions": {
75+
"ecmaVersion": 9,
76+
"sourceType": "module"
77+
},
78+
"plugins": [
79+
"jest",
80+
"react"
81+
],
82+
"rules": {
83+
"no-unused-vars": [
84+
"error",
85+
{
86+
"argsIgnorePattern": "^_",
87+
"varsIgnorePattern": "^_"
88+
}
89+
]
90+
}
91+
},
92+
"prettier": {
93+
"overrides": [
94+
{
95+
"files": [
96+
"*.js",
97+
"src/**/*.js",
98+
"__tests__/**/*.js",
99+
"package.json"
100+
],
101+
"options": {
102+
"singleQuote": true,
103+
"tabWidth": 2
104+
}
105+
}
106+
]
107+
},
38108
"devDependencies": {
39109
"@babel/core": "^7.9.0",
40110
"@babel/plugin-proposal-class-properties": "^7.8.3",
@@ -49,6 +119,7 @@
49119
"enzyme-adapter-react-16": "^1.15.2",
50120
"enzyme-to-json": "^3.4.4",
51121
"eslint": "^6.8.0",
122+
"eslint-config-prettier": "^6.10.1",
52123
"eslint-loader": "^4.0.2",
53124
"eslint-plugin-babel": "^5.3.0",
54125
"eslint-plugin-import": "^2.20.2",
@@ -58,7 +129,9 @@
58129
"file-loader": "^6.0.0",
59130
"jest": "^25.4.0",
60131
"jest-canvas-mock": "^2.2.0",
132+
"minami": "^1.2.3",
61133
"merge": ">=1.2.1",
134+
"prettier": "^2.0.4",
62135
"react-doc-generator": "^1.2.5",
63136
"sinon": "^9.0.2",
64137
"webpack": "^4.43.0",

0 commit comments

Comments
 (0)
Please sign in to comment.