-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50cf6c2
commit b62e5ce
Showing
849 changed files
with
155,152 additions
and
158,345 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: cimg/node:lts | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
key: dependency-cache-{{ checksum "package.json" }} | ||
- run: | ||
name: Install modules | ||
command: yarn install | ||
- save_cache: | ||
key: dependency-cache-{{ checksum "package.json" }} | ||
paths: | ||
- node_modules | ||
- run: | ||
name: Test | ||
command: npm test | ||
- store_artifacts: | ||
path: test-results.xml | ||
build: | ||
docker: | ||
- image: cimg/node:lts | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
key: dependency-cache-{{ checksum "package.json" }} | ||
- run: | ||
name: Install modules | ||
command: yarn install | ||
- save_cache: | ||
key: dependency-cache-{{ checksum "package.json" }} | ||
paths: | ||
- node_modules | ||
- run: | ||
name: Test | ||
command: npm test | ||
- store_artifacts: | ||
path: test-results.xml | ||
|
||
######################################################### | ||
## Disables Config (Comment/Remove to re-enable CircleCI) | ||
######################################################### | ||
workflows: | ||
version: 2 | ||
build-and-test: | ||
jobs: | ||
- build: | ||
filters: | ||
branches: | ||
ignore: /.*/ | ||
version: 2 | ||
build-and-test: | ||
jobs: | ||
- build: | ||
filters: | ||
branches: | ||
ignore: /.*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"source": "./src", | ||
"destination": "./docs", | ||
"plugins": [ | ||
{ "name": "esdoc-standard-plugin" }, | ||
{ | ||
"name": "esdoc-ecmascript-proposal-plugin", | ||
"option": { "all": true } | ||
} | ||
] | ||
"source": "./src", | ||
"destination": "./docs", | ||
"plugins": [ | ||
{ "name": "esdoc-standard-plugin" }, | ||
{ | ||
"name": "esdoc-ecmascript-proposal-plugin", | ||
"option": { "all": true } | ||
} | ||
] | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es2021": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:mocha/recommended", | ||
"eslint-config-prettier" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"plugins": ["mocha"], | ||
"rules": { | ||
"mocha/max-top-level-suites": ["warn", { "limit": 5 }], | ||
"mocha/no-setup-in-describe": "warn", | ||
"no-loss-of-precision": "warn" | ||
} | ||
"env": { | ||
"browser": true, | ||
"es2021": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:mocha/recommended", | ||
"eslint-config-prettier" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
}, | ||
"plugins": ["mocha"], | ||
"rules": { | ||
"mocha/max-top-level-suites": ["warn", { "limit": 5 }], | ||
"mocha/no-setup-in-describe": "warn", | ||
"no-loss-of-precision": "warn" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
process.env.TZ = 'UTC'; | ||
|
||
module.exports = { | ||
bail: true, | ||
timeout: 20000, | ||
exit: true, | ||
require: [ | ||
'ts-node/register', | ||
'mock-local-storage', | ||
'jsdom-global/register', | ||
], | ||
bail: true, | ||
timeout: 20000, | ||
exit: true, | ||
require: ['ts-node/register', 'mock-local-storage', 'jsdom-global/register'], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"singleQuote": true, | ||
"tabWidth": 4 | ||
"singleQuote": true, | ||
"useTabs": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Mocha Tests", | ||
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", | ||
"args": [ | ||
"-b", | ||
"-t", | ||
"20000", | ||
"--colors", | ||
"${workspaceFolder}/src/**/*.unit.js", | ||
"-t", | ||
"30000" | ||
], | ||
"internalConsoleOptions": "openOnSessionStart", | ||
"skipFiles": ["<node_internals>/**"] | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Mocha Tests via Yarn", | ||
"runtimeExecutable": "yarn", | ||
"cwd": "${workspaceFolder}", | ||
"runtimeArgs": ["test"] | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Mocha: current file", | ||
"program": "${workspaceFolder}/node_modules/.bin/mocha", | ||
"args": ["-b", "-t", "0", "'${file}'"], | ||
"console": "integratedTerminal" | ||
} | ||
] | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Mocha Tests", | ||
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", | ||
"args": [ | ||
"-b", | ||
"-t", | ||
"20000", | ||
"--colors", | ||
"${workspaceFolder}/src/**/*.unit.js", | ||
"-t", | ||
"30000" | ||
], | ||
"internalConsoleOptions": "openOnSessionStart", | ||
"skipFiles": ["<node_internals>/**"] | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Mocha Tests via Yarn", | ||
"runtimeExecutable": "yarn", | ||
"cwd": "${workspaceFolder}", | ||
"runtimeArgs": ["test"] | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Mocha: current file", | ||
"program": "${workspaceFolder}/node_modules/.bin/mocha", | ||
"args": ["-b", "-t", "0", "'${file}'"], | ||
"console": "integratedTerminal" | ||
} | ||
] | ||
} |
Oops, something went wrong.