Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: enables inline sourcemaps for packages for developer experience #593

Merged
merged 3 commits into from Jul 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/generated/changelog.html
Expand Up @@ -12,6 +12,7 @@ <h1>Agent-JS Changelog</h1>
<section>
<h2>Version 0.12.1</h2>
<ul>
<li>Adds inline sourcemaps to packages</li>
<li>Adds UTF-8 as an encoding option for CanisterStatus custom paths</li>
<li>
Adds a public method "createReadStateRequest" that creates the request for "readState".
Expand Down
1 change: 1 addition & 0 deletions packages/agent/tsconfig.json
Expand Up @@ -17,6 +17,7 @@
"resolveJsonModule": true,
"rootDir": "./src",
"sourceMap": true,
"inlineSources": true,
"strict": true,
"target": "es2017",
"tsBuildInfoFile": "./build_info.json"
Expand Down
1 change: 1 addition & 0 deletions packages/auth-client/tsconfig.json
Expand Up @@ -14,6 +14,7 @@
"resolveJsonModule": true,
"rootDir": "./src",
"sourceMap": true,
"inlineSources": true,
"strict": true,
"target": "es2017"
},
Expand Down
1 change: 1 addition & 0 deletions packages/authentication/tsconfig.json
Expand Up @@ -14,6 +14,7 @@
"resolveJsonModule": true,
"rootDir": "./src",
"sourceMap": true,
"inlineSources": true,
"strict": true,
"target": "es2017"
},
Expand Down
1 change: 1 addition & 0 deletions packages/candid/tsconfig.json
Expand Up @@ -14,6 +14,7 @@
"resolveJsonModule": true,
"rootDir": "./src",
"sourceMap": true,
"inlineSources": true,
"strict": true,
"target": "es2017"
},
Expand Down
1 change: 1 addition & 0 deletions packages/identity-ledgerhq/tsconfig.json
Expand Up @@ -14,6 +14,7 @@
"resolveJsonModule": true,
"rootDir": "./src",
"sourceMap": true,
"inlineSources": true,
"strict": true,
"target": "es2017"
},
Expand Down
1 change: 1 addition & 0 deletions packages/identity/tsconfig.json
Expand Up @@ -14,6 +14,7 @@
"resolveJsonModule": true,
"rootDir": "./src",
"sourceMap": true,
"inlineSources": true,
"strict": true,
"target": "es2017"
},
Expand Down
1 change: 1 addition & 0 deletions packages/principal/tsconfig.json
Expand Up @@ -14,6 +14,7 @@
"resolveJsonModule": true,
"rootDir": "./src",
"sourceMap": true,
"inlineSources": true,
"strict": true,
"target": "es2017"
},
Expand Down