Skip to content

Commit

Permalink
build: Setup changesets (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
mydea authored Nov 14, 2023
1 parent 5a22877 commit 5ea431a
Show file tree
Hide file tree
Showing 5 changed files with 1,481 additions and 44 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/config@2.3.1/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
6 changes: 6 additions & 0 deletions .changeset/dull-students-shake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@spotlightjs/sidecar': patch
'@spotlightjs/core': patch
---

Initial changeset added
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,26 @@
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"format": "prettier --write --cache .",
"yalc:publish": "yalc publish --push --sig --private"
"yalc:publish": "yalc publish --push --sig --private",
"changeset:add": "pnpm changeset",
"changeset:consume": "pnpm changeset version",
"changeset:publish": "pnpm changeset publish"
},
"dependencies": {},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"lint-staged": "^15.0.2",
"simple-git-hooks": "^2.9.0",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"typescript": "^5.0.2",
"rimraf": "^5.0.5"
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.0.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
Expand Down
Loading

0 comments on commit 5ea431a

Please sign in to comment.