Skip to content

Commit 8c15ac0

Browse files
authored
Merge pull request #115 from crashmax-dev/feat/changesets
feat(workspace): add `@changesets/cli`
2 parents ddacf70 + 388e885 commit 8c15ac0

File tree

4 files changed

+1123
-42
lines changed

4 files changed

+1123
-42
lines changed

.changeset/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "master",
9+
"updateInternalDependencies": "patch",
10+
"ignore": [
11+
"website",
12+
"basic",
13+
"with-angular",
14+
"with-preact",
15+
"with-react",
16+
"with-solid",
17+
"with-svelte",
18+
"with-vue",
19+
"with-web-components",
20+
"@fireworks-js/*"
21+
]
22+
}

package.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,21 @@
55
"type": "module",
66
"description": "A simple fireworks library!",
77
"homepage": "https://fireworks.js.org",
8+
"packageManager": "pnpm@8.0.0",
9+
"workspaces": [
10+
"packages/*",
11+
"examples/*",
12+
"website"
13+
],
814
"scripts": {
915
"dev": "turbo run dev --filter=./packages/*",
1016
"build": "turbo run build --filter=./packages/*",
1117
"dev:website": "turbo run dev --filter=./website",
1218
"build:website": "turbo run build --filter=./website",
1319
"dev:examples": "turbo run dev --filter=./examples/*",
1420
"build:examples": "turbo run build --filter=./examples/*",
15-
"format": "prettier --write --ignore-unknown **"
21+
"format": "prettier --write --ignore-unknown **",
22+
"changesets": "changeset"
1623
},
1724
"repository": {
1825
"type": "git",
@@ -39,8 +46,8 @@
3946
"bugs": {
4047
"url": "https://github.com/crashmax-dev/fireworks-js/issues"
4148
},
42-
"packageManager": "pnpm@8.0.0",
4349
"devDependencies": {
50+
"@changesets/cli": "2.26.2",
4451
"@crashmax/prettier-config": "2.2.1",
4552
"@crashmax/tsconfig": "1.0.2",
4653
"@types/node": "18.11.9",

0 commit comments

Comments
 (0)