Skip to content

Commit d8c7476

Browse files
committed
Rename to "Python friendly error messages"
1 parent 339a592 commit d8c7476

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {
2424
skulptAdapter,
2525
pyodideAdapter,
2626
explain
27-
} from "python-friendly-errors";
27+
} from "python-friendly-error-messages";
2828
2929
await loadCopydeckFor(navigator.language); // falls back to "en"
3030

package.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
{
2-
"name": "python-friendly-errors",
2+
"name": "python-friendly-error-messages",
33
"version": "0.1.0",
44
"type": "module",
5+
"sideEffects": false,
6+
"exports": {
7+
".": {
8+
"import": "./dist/index.js",
9+
"browser": "./dist/index.browser.js"
10+
}
11+
},
12+
"main": "dist/index.js",
13+
"types": "dist/index.d.ts",
514
"files": [
615
"dist",
716
"copydecks"
817
],
9-
"main": "dist/index.js",
10-
"types": "dist/index.d.ts",
11-
"exports": {
12-
".": "./dist/index.js"
13-
},
1418
"scripts": {
1519
"clean": "rimraf dist",
1620
"prebuild": "npm run clean",

0 commit comments

Comments
 (0)