Skip to content

Commit

Permalink
feat: add changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
sveenxx committed Feb 27, 2023
1 parent 1ef5185 commit 277d949
Show file tree
Hide file tree
Showing 10 changed files with 986 additions and 63 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
8 changes: 8 additions & 0 deletions apps/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# web

## 0.1.1

### Patch Changes

- Updated dependencies
- [email protected]
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,8 @@
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
"packageManager": "[email protected]",
"dependencies": {
"@changesets/cli": "^2.26.0"
}
}
1 change: 1 addition & 0 deletions packages/config/tailwind/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"private": true,
"files": [
"index.js",
"postcss.js"
Expand Down
1 change: 1 addition & 0 deletions packages/eslint-config-poply/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "0.0.0",
"main": "index.js",
"license": "MIT",
"private": "true",
"dependencies": {
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.3.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/poply/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# poply

## 1.0.0

### Major Changes

- First relese
2 changes: 1 addition & 1 deletion packages/poply/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "poply",
"description": "Poply is lightweight toast library for React",
"repository": "sveenxx/poply",
"version": "0.0.0",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
Expand Down
Loading

0 comments on commit 277d949

Please sign in to comment.