Skip to content

Commit

Permalink
fix: use correct bit positions for map settings (#60)
Browse files Browse the repository at this point in the history
* 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
PBug90 authored Aug 26, 2020
1 parent 4568cb6 commit 9ebdbc4
Show file tree
Hide file tree
Showing 25 changed files with 830 additions and 775 deletions.
32 changes: 16 additions & 16 deletions .eslintrc.js
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"],
},
},
},
};
22 changes: 11 additions & 11 deletions .gitignore
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
72 changes: 36 additions & 36 deletions .travis.yml
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
Loading

0 comments on commit 9ebdbc4

Please sign in to comment.