Skip to content

Commit

Permalink
Merge pull request #14 from tshaddix/v1.0.2
Browse files Browse the repository at this point in the history
Fix typings and import
  • Loading branch information
tshaddix authored Nov 16, 2023
2 parents 59dbbc2 + e6f86f5 commit 4684889
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ jobs:
- run: npm run typecheck
- run: npm run prettier
- run: npm run build
- run: npm run build-example
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
{
"name": "paintbricks",
"version": "1.0.0",
"version": "1.0.2",
"description": "An extendable drawing system built for the web.",
"exports": "./dist/index.esm.js",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"engines": {
"node": " >=14.13.1 || >=16.0.0"
},
Expand All @@ -15,7 +21,6 @@
"prettier": "prettier --check \"{src,example/src}/**/*.{ts,json}\"",
"prettier:fix": "prettier --write \"{src,example/src}/**/*.{ts,json}\""
},
"typings": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/tshaddix/paintbricks.git"
Expand Down

0 comments on commit 4684889

Please sign in to comment.