Skip to content

Commit afcc1bb

Browse files
committed
release: v0.3.0
Signed-off-by: Christian Stewart <christian@aperture.us>
1 parent 5ace5b5 commit afcc1bb

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

package.json

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"name": "root",
3-
"version": "0.2.8",
43
"private": true,
54
"workspaces": [
65
"packages/*"
@@ -16,12 +15,6 @@
1615
"**/immer": "10.1.1"
1716
},
1817
"scripts": {
19-
"build": "cd ./packages/chonky && npm run build && cd ../chonky-icon-fontawesome && npm run build",
20-
"release:version": "npm version patch -m \"release: v%s\" --no-git-tag-version && npm version patch -m \"release: v%s\" --no-git-tag-version --workspace=packages/chonky && npm version patch -m \"release: v%s\" --no-git-tag-version --workspace=packages/chonky-icon-fontawesome",
21-
"release:version:minor": "npm version minor -m \"release: v%s\" --no-git-tag-version && npm version minor -m \"release: v%s\" --no-git-tag-version --workspace=packages/chonky && npm version minor -m \"release: v%s\" --no-git-tag-version --workspace=packages/chonky-icon-fontawesome",
22-
"release:commit": "git reset && git add package.json packages/chonky/package.json packages/chonky-icon-fontawesome/package.json && git commit -s -m \"release: v$npm_package_version\" && git tag v$npm_package_version",
23-
"release:publish": "git push && git push --tags && npm run build && cd packages/chonky-icon-fontawesome && npm publish && cd ../chonky && npm publish",
24-
"release": "npm run release:version && npm run release:commit",
25-
"release:minor": "npm run release:version:minor && npm run release:commit"
18+
"build": "cd ./packages/chonky && npm run build && cd ../chonky-icon-fontawesome && npm run build"
2619
}
2720
}

packages/chonky-icon-fontawesome/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aperturerobotics/chonky-icon-fontawesome",
3-
"version": "0.2.8",
3+
"version": "0.3.0",
44
"description": "FontAwesome icon component for Chonky file browser",
55
"license": "MIT",
66
"main": "dist/index.js",
@@ -63,7 +63,7 @@
6363
"typescript": "^5.3.3"
6464
},
6565
"dependencies": {
66-
"@aperturerobotics/chonky": "^0.2.8",
66+
"@aperturerobotics/chonky": "^0.3.0",
6767
"@fortawesome/fontawesome-svg-core": "^6.5.1",
6868
"@fortawesome/free-brands-svg-icons": "6.5.2",
6969
"@fortawesome/free-solid-svg-icons": "^6.5.1",

packages/chonky/package.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aperturerobotics/chonky",
3-
"version": "0.2.8",
3+
"version": "0.3.0",
44
"description": "A File Browser component for React",
55
"license": "MIT",
66
"homepage": "https://chonky.io/",
@@ -23,8 +23,16 @@
2323
"file-browser",
2424
"react-component"
2525
],
26-
"main": "dist/index.js",
27-
"types": "dist/index.d.ts",
26+
"main": "./dist/index.js",
27+
"typings": "./dist/index.d.ts",
28+
"module": "./dist/chonky.esm.js",
29+
"exports": {
30+
".": {
31+
"import": "./dist/index.js",
32+
"require": "./dist/index.js",
33+
"types": "./dist/index.d.ts"
34+
}
35+
},
2836
"files": [
2937
"dist",
3038
"src"
@@ -58,7 +66,6 @@
5866
"useTabs": false,
5967
"printWidth": 88
6068
},
61-
"module": "dist/chonky.esm.js",
6269
"size-limit": [
6370
{
6471
"path": "dist/chonky.cjs.production.min.js",

0 commit comments

Comments
 (0)