Skip to content

Commit

Permalink
chore: add source maps
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards1211 committed Oct 3, 2024
1 parent 68925b9 commit cab8feb
Show file tree
Hide file tree
Showing 11 changed files with 1,034 additions and 3,632 deletions.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# created by @jcoreio/toolchain-circle

version: 2.1

orbs:
codecov: codecov/codecov@4.1.0
jobs:
build:
docker:
Expand All @@ -24,6 +27,7 @@ jobs:
name: Prepublish
command: |
[[ $(netstat -tnlp | grep -F 'circleci-agent') ]] || pnpm run tc prepublish
- codecov/upload
- run:
name: Release
command: |
Expand Down
5 changes: 1 addition & 4 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
/* eslint-env node, es2018 */
module.exports = {
extends: [require.resolve('@jcoreio/toolchain/eslint.config.cjs')],
env: {
'shared-node-browser': true,
},
extends: [require.resolve('@jcoreio/toolchain/eslintConfig.cjs')],
}
3 changes: 2 additions & 1 deletion .mocharc.cjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* eslint-env node, es2018 */
const base = require('@jcoreio/toolchain-mocha/.mocharc.cjs')
const { getSpecs } = require('@jcoreio/toolchain-mocha')
module.exports = {
...base,
exit: true,
spec: getSpecs(['test']),
}
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
optional=false
23 changes: 13 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@jcoreio/eslint-plugin-implicit-dependencies": "^1.1.1",
"@jcoreio/toolchain": "^3.10.2",
"@jcoreio/toolchain-circle": "^3.10.2",
"@jcoreio/toolchain-esnext": "^3.10.2",
"@jcoreio/toolchain-flow": "^3.10.2",
"@jcoreio/toolchain-mocha": "^3.10.2",
"@jcoreio/toolchain-semantic-release": "^3.10.2",
"@jcoreio/toolchain-typescript": "^3.10.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@jcoreio/toolchain": "^4.9.1",
"@jcoreio/toolchain-circle": "^4.9.1",
"@jcoreio/toolchain-esnext": "^4.9.1",
"@jcoreio/toolchain-flow": "^4.9.1",
"@jcoreio/toolchain-mocha": "^4.9.1",
"@jcoreio/toolchain-semantic-release": "^4.9.1",
"@jcoreio/toolchain-typescript": "^4.9.1",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"chai": "^4.4.1",
"eslint": "^8.43.0",
"eslint": "^8.56.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-no-only-tests": "^3.1.0",
"mocha": "^10.2.0",
Expand All @@ -69,5 +69,8 @@
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"@jcoreio/toolchain": {
"migratedVersion": "4.9.1"
}
}
Loading

0 comments on commit cab8feb

Please sign in to comment.