Skip to content

Commit b5c0118

Browse files
committed
chore: Migrated from auto-changelog to changeset.
1 parent f4b121f commit b5c0118

File tree

13 files changed

+146
-156
lines changed

13 files changed

+146
-156
lines changed

.changeset/README.md

Lines changed: 8 additions & 0 deletions
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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": ["@changesets/changelog-github", { "repo": "blankeos/solid-number-flow" }],
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

.github/workflows/codeql.yml

Lines changed: 0 additions & 46 deletions
This file was deleted.

.github/workflows/format.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# I got this from Matt Pockock
2+
# https://www.youtube.com/watch?v=eh89VE3Mk5g
3+
name: CI
4+
5+
on:
6+
push:
7+
branches:
8+
- '**'
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
# ...
15+
- uses: actions/checkout@v4
16+
- uses: oven-sh/setup-bun@v2
17+
18+
- run: bun install --frozen-lockfile
19+
- run: bun run ci

.github/workflows/publish.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# I got this from Matt Pockock
2+
# https://www.youtube.com/watch?v=eh89VE3Mk5g
3+
name: Publish
4+
on:
5+
push:
6+
branches:
7+
- 'main'
8+
9+
# Publish workflows don't happen at the same time.
10+
concurrency: ${{ github.workflow }}-${{ github.ref }}
11+
12+
jobs:
13+
publish:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: oven-sh/setup-bun@v2
18+
with:
19+
bun-version: latest
20+
- run: bun install --frozen-lockfile
21+
- run: bun run build
22+
23+
- name: Create Release Pull Request or Publish
24+
id: changesets
25+
uses: changesets/action@v1
26+
with:
27+
publish: bun run publish
28+
env:
29+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/tests.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_docs/ch-template.hbs

CHANGELOG.md

Lines changed: 25 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,41 @@
1-
### Changelog
1+
# solid-number-flow
22

3-
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
3+
## 0.3.3
44

5-
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
5+
### Patch Changes
66

7-
#### [0.3.3](https://github.com/Blankeos/solid-number-flow/compare/0.3.2...0.3.3)
7+
- chore: Add max as contributor.
88

9-
- feat: Non parts props work + examples in docs. [`#4`](https://github.com/Blankeos/solid-number-flow/pull/4)
109
- feat: Added support for non-parts props. Fixes #3 [`#3`](https://github.com/Blankeos/solid-number-flow/issues/3)
11-
- feat: Added examples for trend and continuous. [`0ea1c9c`](https://github.com/Blankeos/solid-number-flow/commit/0ea1c9c167385b4834a6333a790792d74a2de27c)
1210

13-
#### [0.3.2](https://github.com/Blankeos/solid-number-flow/compare/0.3.1...0.3.2)
11+
- docs: Added examples for trend and continuous.
1412

15-
> 20 October 2024
13+
- fix: Non parts props work + examples in docs. [`#4`](https://github.com/Blankeos/solid-number-flow/pull/4) Thanks @blankeos!
1614

17-
- chore: Updated deps, npm keywords, better landing page. [`d0c310b`](https://github.com/Blankeos/solid-number-flow/commit/d0c310ba7e9fa453e4bcdab38d87aabaebd5c3e0)
18-
- chore: release 0.3.2 [`77fd36c`](https://github.com/Blankeos/solid-number-flow/commit/77fd36c98fa270adef5eb6700baafb647e3eaf13)
15+
## 0.3.2
1916

20-
#### [0.3.1](https://github.com/Blankeos/solid-number-flow/compare/0.3.0...0.3.1)
17+
### Patch Changes
2118

22-
> 17 October 2024
19+
- chore: Updated deps, npm keywords, better landing page.
2320

24-
- fix: formatting and locales. [`#2`](https://github.com/Blankeos/solid-number-flow/pull/2)
25-
- fix: don't define more than once [`#1`](https://github.com/Blankeos/solid-number-flow/pull/1)
26-
- chore: more docs on site and readme. [`6350841`](https://github.com/Blankeos/solid-number-flow/commit/635084107e60669f3c33cb0e343b81200ebbb783)
27-
- chore: release 0.3.1 [`f6ee64a`](https://github.com/Blankeos/solid-number-flow/commit/f6ee64a36de678766a34a7939de7404d7dd51b98)
28-
- Define outside component [`9388853`](https://github.com/Blankeos/solid-number-flow/commit/9388853615ebfc58bd7e8f74cd1e80aa6fc35217)
21+
## 0.3.1
2922

30-
#### [0.3.0](https://github.com/Blankeos/solid-number-flow/compare/0.0.3...0.3.0)
23+
### Patch Changes
3124

32-
> 16 October 2024
25+
- fix: formatting and locales [`#2`](https://github.com/Blankeos/solid-number-flow/pull/2) Thanks @blankeos!
3326

34-
#### 0.0.3
27+
- fix: don't define more than once [`#1`](https://github.com/Blankeos/solid-number-flow/pull/1) Thanks @brenelz!
3528

36-
> 22 October 2024
29+
- chore: more docs on site and readme.
3730

38-
- feat: Non parts props work + examples in docs. [`#4`](https://github.com/Blankeos/solid-number-flow/pull/4)
39-
- fix: formatting and locales. [`#2`](https://github.com/Blankeos/solid-number-flow/pull/2)
40-
- fix: don't define more than once [`#1`](https://github.com/Blankeos/solid-number-flow/pull/1)
41-
- feat: Added support for non-parts props. Fixes #3 [`#3`](https://github.com/Blankeos/solid-number-flow/issues/3)
42-
- feat: Finished port + landing page. [`7852ff7`](https://github.com/Blankeos/solid-number-flow/commit/7852ff7db4062558d557e47985bbac8c12de70e7)
43-
- feat: Added examples for trend and continuous. [`0ea1c9c`](https://github.com/Blankeos/solid-number-flow/commit/0ea1c9c167385b4834a6333a790792d74a2de27c)
44-
- chore: Better dev environment, docs, landing, and tests. [`a5b09b0`](https://github.com/Blankeos/solid-number-flow/commit/a5b09b030d79128c5ab82128b88bd0e76587047f)
31+
## 0.3.0
32+
33+
### Patch Changes
34+
35+
- fix: Bug fixes on ssr.
36+
37+
- chore: Better dev environment, docs, landing, and tests.
38+
39+
- feat: Finished port + landing page.
40+
41+
- chore: Codebase formatting.

_docs/_OLD_CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
### Changelog
2+
3+
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
4+
5+
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6+
7+
#### [0.3.3](https://github.com/Blankeos/solid-number-flow/compare/0.3.2...0.3.3)
8+
9+
- feat: Non parts props work + examples in docs. [`#4`](https://github.com/Blankeos/solid-number-flow/pull/4) Thanks!
10+
- feat: Added support for non-parts props. Fixes #3 [`#3`](https://github.com/Blankeos/solid-number-flow/issues/3)
11+
- feat: Added examples for trend and continuous. [`0ea1c9c`](https://github.com/Blankeos/solid-number-flow/commit/0ea1c9c167385b4834a6333a790792d74a2de27c)
12+
- chore: release 0.0.3 [`588cbe2`](https://github.com/Blankeos/solid-number-flow/commit/588cbe21ac5d9ac2c1b3dcf8eb0f2c00d3fdf255)
13+
- chore: Added max as contributor. [`f4b121f`](https://github.com/Blankeos/solid-number-flow/commit/f4b121f881d14b3f2c89fdafe30945e1d3d23a55)
14+
15+
#### [0.3.2](https://github.com/Blankeos/solid-number-flow/compare/0.3.1...0.3.2)
16+
17+
> 20 October 2024
18+
19+
- chore: Updated deps, npm keywords, better landing page. [`d0c310b`](https://github.com/Blankeos/solid-number-flow/commit/d0c310ba7e9fa453e4bcdab38d87aabaebd5c3e0)
20+
- chore: release 0.3.2 [`77fd36c`](https://github.com/Blankeos/solid-number-flow/commit/77fd36c98fa270adef5eb6700baafb647e3eaf13)
21+
22+
#### [0.3.1](https://github.com/Blankeos/solid-number-flow/compare/0.3.0...0.3.1)
23+
24+
> 17 October 2024
25+
26+
- fix: formatting and locales. [`#2`](https://github.com/Blankeos/solid-number-flow/pull/2) Thanks!
27+
- fix: don't define more than once [`#1`](https://github.com/Blankeos/solid-number-flow/pull/1) Thanks!
28+
- chore: more docs on site and readme. [`6350841`](https://github.com/Blankeos/solid-number-flow/commit/635084107e60669f3c33cb0e343b81200ebbb783)
29+
- chore: release 0.3.1 [`f6ee64a`](https://github.com/Blankeos/solid-number-flow/commit/f6ee64a36de678766a34a7939de7404d7dd51b98)
30+
- Define outside component [`9388853`](https://github.com/Blankeos/solid-number-flow/commit/9388853615ebfc58bd7e8f74cd1e80aa6fc35217)
31+
32+
#### [0.3.0](https://github.com/Blankeos/solid-number-flow/compare/0.0.3...0.3.0)
33+
34+
> 16 October 2024
35+
36+
#### 0.0.3
37+
38+
> 22 October 2024
39+
40+
- feat: Non parts props work + examples in docs. [`#4`](https://github.com/Blankeos/solid-number-flow/pull/4) Thanks!
41+
- fix: formatting and locales. [`#2`](https://github.com/Blankeos/solid-number-flow/pull/2) Thanks!
42+
- fix: don't define more than once [`#1`](https://github.com/Blankeos/solid-number-flow/pull/1) Thanks!
43+
- feat: Added support for non-parts props. Fixes #3 [`#3`](https://github.com/Blankeos/solid-number-flow/issues/3)
44+
- feat: Finished port + landing page. [`7852ff7`](https://github.com/Blankeos/solid-number-flow/commit/7852ff7db4062558d557e47985bbac8c12de70e7)
45+
- feat: Added examples for trend and continuous. [`0ea1c9c`](https://github.com/Blankeos/solid-number-flow/commit/0ea1c9c167385b4834a6333a790792d74a2de27c)
46+
- chore: Better dev environment, docs, landing, and tests. [`a5b09b0`](https://github.com/Blankeos/solid-number-flow/commit/a5b09b030d79128c5ab82128b88bd0e76587047f)

0 commit comments

Comments
 (0)