Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Jim Blanchard <[email protected]>
  • Loading branch information
HuiSF and jimblanc authored Nov 7, 2023
1 parent d053ac5 commit c0dce58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/analytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"scripts": {
"test": "npm run lint && jest -w 1 --coverage",
"test:watch": "tslint 'src/**/*.ts' && jest -w 1 --watch",
"build-with-test": "npm run clean && npm run build",
"build-with-test": "npm run clean && npm run test && npm run build",
"build:umd": "webpack && webpack --config ./webpack.config.dev.js",
"build:esm-cjs": "rollup -c rollup.config.mjs",
"build:cjs:watch": "rimraf dist/cjs && tsc -m commonjs --outDir dist/cjs --watch",
Expand Down
11 changes: 3 additions & 8 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,6 @@
"^.+\\.(js|jsx|ts|tsx)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"testPathIgnorePatterns": [
"<rootDir>/__tests__/helpers.ts",
"<rootDir>/__tests__/fixtures/",
"<rootDir>/__tests__/utils/"
],
"moduleFileExtensions": [
"ts",
"tsx",
Expand All @@ -133,9 +128,9 @@
}
},
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist",
"<rootDir>/__tests__"
"node_modules",
"dist",
"__tests__"
]
}
}

0 comments on commit c0dce58

Please sign in to comment.