Skip to content

Commit

Permalink
feat: use sourcemaps
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 committed Aug 22, 2024
1 parent fe1e7af commit fd32e4a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGES TO `@es-joy/jsoe`

## 0.21.0

- feat: use sourcemaps

## 0.20.6

- fix(`recordType`): failing `toValue` conversion
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@es-joy/jsoe",
"version": "0.20.6",
"version": "0.21.0",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./src/index.js",
Expand Down
2 changes: 2 additions & 0 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export default [{
input: 'src/index.js',
external: ['react'], // Todo: remove when removed from Zodex
output: {
sourcemap: true,
file: 'dist/index.js',
format: 'es'
},
Expand Down Expand Up @@ -70,6 +71,7 @@ export default [{
output: {
file: 'src/deepEqual.js',
format: 'es',
sourcemap: true,
name: 'deepEqual'
},
plugins: [
Expand Down
1 change: 1 addition & 0 deletions src/deepEqual.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/deepEqual.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fd32e4a

Please sign in to comment.