diff --git a/.changeset/config.json b/.changeset/config.json index ab848d1..e65b750 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -1,11 +1,15 @@ { - "$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json", - "changelog": "@changesets/cli/changelog", + "$schema": "https://unpkg.com/@changesets/config@1.4.0/schema.json", + "changelog": [ + "@changesets/changelog-github", + { "repo": "outposthq/searchjs" } + ], "commit": false, - "fixed": [], "linked": [], - "access": "restricted", + "access": "public", "baseBranch": "main", "updateInternalDependencies": "patch", - "ignore": [] -} + "___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": { + "onlyUpdatePeerDependentsWhenOutOfRange": true + } +} \ No newline at end of file diff --git a/.changeset/eighty-moose-fold.md b/.changeset/eighty-moose-fold.md new file mode 100644 index 0000000..0b5481e --- /dev/null +++ b/.changeset/eighty-moose-fold.md @@ -0,0 +1,7 @@ +--- +"@searchjs/react": patch +"@searchjs/css": patch +"@searchjs/web": patch +--- + +Release initial package diff --git a/.changeset/sweet-days-flash.md b/.changeset/sweet-days-flash.md deleted file mode 100644 index 492a9e7..0000000 --- a/.changeset/sweet-days-flash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@searchjs/web": minor ---- - -testing build diff --git a/.changeset/sweet-squids-complain.md b/.changeset/sweet-squids-complain.md deleted file mode 100644 index b944b16..0000000 --- a/.changeset/sweet-squids-complain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@searchjs/react": minor ---- - -fix: import for @searchjs/css diff --git a/.changeset/witty-snails-cheat.md b/.changeset/witty-snails-cheat.md deleted file mode 100644 index a7b03b3..0000000 --- a/.changeset/witty-snails-cheat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@searchjs/css": minor ---- - -added default import so users import like this "import '@searchjs/css';" diff --git a/packages/css/package.json b/packages/css/package.json index b4162f2..0230123 100644 --- a/packages/css/package.json +++ b/packages/css/package.json @@ -11,5 +11,8 @@ }, "files": [ "index.css" - ] + ], + "publishConfig": { + "access": "public" + } } diff --git a/packages/react/package.json b/packages/react/package.json index 26fa1ed..2479568 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -48,5 +48,8 @@ }, "peerDependencies": { "react": "^18.0.0" + }, + "publishConfig": { + "access": "public" } } diff --git a/packages/web/package.json b/packages/web/package.json index 6e91440..0a42616 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -34,5 +34,8 @@ "preact": "^10.17.1", "react": "npm:@preact/compat", "react-dom": "npm:@preact/compat" + }, + "publishConfig": { + "access": "public" } }