-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use correct bit positions for map settings (#60)
* fix: use correct bit positions for map settings * chore: dependency updates * style: fix linting errors * style: fix linting errors * improvement: use bit shift for observerFlags and add new property observerMode to schema * improvement: remove console.log * improvement: add new observerMode property to parser output * test: add test replay file for observer on defeat
- Loading branch information
Showing
25 changed files
with
830 additions
and
775 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,16 +1,16 @@ | ||
module.exports = { | ||
parser: "@typescript-eslint/parser", // Specifies the ESLint parser | ||
extends: [ | ||
"plugin:@typescript-eslint/recommended", // Uses the recommended rules from @typescript-eslint/eslint-plugin | ||
"plugin:prettier/recommended", | ||
], | ||
rules: {}, | ||
plugins: ["@typescript-eslint", "prettier"], | ||
settings: { | ||
"import/resolver": { | ||
node: { | ||
extensions: [".js", ".ts"], | ||
}, | ||
}, | ||
}, | ||
}; | ||
module.exports = { | ||
parser: "@typescript-eslint/parser", // Specifies the ESLint parser | ||
extends: [ | ||
"plugin:@typescript-eslint/recommended", // Uses the recommended rules from @typescript-eslint/eslint-plugin | ||
"plugin:prettier/recommended", | ||
], | ||
rules: {}, | ||
plugins: ["@typescript-eslint", "prettier"], | ||
settings: { | ||
"import/resolver": { | ||
node: { | ||
extensions: [".js", ".ts"], | ||
}, | ||
}, | ||
}, | ||
}; |
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,12 @@ | ||
node_modules | ||
.npmignore | ||
replays_batch/ | ||
yarn.lock | ||
.nyc_output | ||
coverage | ||
yarn-error.log | ||
dist | ||
.vscode | ||
.rpt2_cache | ||
playground.js | ||
node_modules | ||
.npmignore | ||
replays_batch/ | ||
yarn.lock | ||
.nyc_output | ||
coverage | ||
yarn-error.log | ||
dist | ||
.vscode | ||
.rpt2_cache | ||
playground.js | ||
doc |
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,36 +1,36 @@ | ||
language: node_js | ||
node_js: | ||
- "13" | ||
- "12" | ||
- "11" | ||
- "10" | ||
install: | ||
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter | ||
- chmod +x ./cc-test-reporter | ||
- ./cc-test-reporter before-build | ||
- npm install | ||
script: | ||
- npm run lint | ||
- npm run build | ||
- npm run coverage | ||
|
||
after_script: | ||
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT | ||
|
||
|
||
jobs: | ||
include: | ||
- stage: build docs | ||
node_js: "12" | ||
script: | ||
- npm i -g typescript typedoc | ||
- typedoc --out doc src | ||
- touch ./doc/.nojekyll | ||
deploy: | ||
provider: pages | ||
local_dir: ./doc | ||
skip_cleanup: true | ||
github_token: $GITHUB_TOKEN | ||
keep_history: true | ||
on: | ||
branch: async-replay-parser | ||
language: node_js | ||
node_js: | ||
- "13" | ||
- "12" | ||
- "11" | ||
- "10" | ||
install: | ||
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter | ||
- chmod +x ./cc-test-reporter | ||
- ./cc-test-reporter before-build | ||
- npm install | ||
script: | ||
- npm run lint | ||
- npm run build | ||
- npm run coverage | ||
|
||
after_script: | ||
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT | ||
|
||
|
||
jobs: | ||
include: | ||
- stage: build docs | ||
node_js: "12" | ||
script: | ||
- npm i -g typescript typedoc | ||
- typedoc --out doc src | ||
- touch ./doc/.nojekyll | ||
deploy: | ||
provider: pages | ||
local_dir: ./doc | ||
skip_cleanup: true | ||
github_token: $GITHUB_TOKEN | ||
keep_history: true | ||
on: | ||
branch: async-replay-parser |
Oops, something went wrong.