Skip to content

Commit f28e128

Browse files
first changeset
1 parent 9557797 commit f28e128

File tree

10 files changed

+658
-43
lines changed

10 files changed

+658
-43
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/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

.changeset/new-suns-type.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@sejohnson/svelte-themes': patch
3+
---
4+
5+
Initial version

.github/release.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
concurrency: ${{ github.workflow }}-${{ github.ref }}
9+
10+
jobs:
11+
release:
12+
name: Release
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Setup pnpm
19+
uses: pnpm/action-setup@v2
20+
21+
- uses: actions/setup-node@v4
22+
with:
23+
node-version-file: '.node-version'
24+
cache: 'pnpm'
25+
26+
- name: Install Dependencies
27+
run: pnpm install
28+
29+
- name: Create Release Pull Request or Publish to npm
30+
id: changesets
31+
uses: changesets/action@v1
32+
with:
33+
publish: pnpm release
34+
version: pnpm version-packages
35+
env:
36+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ node_modules
77
.netlify
88
.wrangler
99
.svelte-kit
10-
/build
11-
/dist
10+
build
11+
dist
1212

1313
# OS
1414
.DS_Store

package.json

Lines changed: 33 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,35 @@
11
{
2-
"private": true,
3-
"scripts": {
4-
"prepublish": "pnpm build --filter=svelte-themes",
5-
"build": "pnpm build",
6-
"start": "pnpm start",
7-
"dev": "turbo dev",
8-
"test:e2e": "turbo test:e2e",
9-
"test:unit": "turbo test:unit",
10-
"format": "prettier --write .",
11-
"lint": "prettier --check . && eslint ."
12-
},
13-
"devDependencies": {
14-
"@eslint/compat": "^1.2.5",
15-
"@eslint/js": "^9.18.0",
16-
"@types/node": "20.5.7",
17-
"eslint": "^9.18.0",
18-
"eslint-config-prettier": "^10.0.1",
19-
"eslint-plugin-svelte": "^2.46.1",
20-
"prettier": "^3.5.1",
21-
"prettier-plugin-svelte": "^3.3.3",
22-
"typescript": "^5.0.0",
23-
"typescript-eslint": "^8.20.0"
24-
},
25-
"repository": {
26-
"type": "git",
27-
"url": "https://github.com/elliott-with-the-longest-name-on-github/svelte-themes.git"
28-
},
29-
"engines": {
30-
"node": ">=20",
31-
"pnpm": ">=9"
32-
},
33-
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
2+
"private": true,
3+
"scripts": {
4+
"prepublish": "pnpm -F svelte-themes build",
5+
"test:e2e": "pnpm -r test:e2e",
6+
"test:unit": "pnpm -r test:unit",
7+
"format": "prettier --write .",
8+
"check": "pnpm -r check",
9+
"lint": "prettier --check . && eslint .",
10+
"release": "pnpm -r build && changeset publish",
11+
"version-packages": "changeset version && pnpm i --no-frozen-lockfile && git add ."
12+
},
13+
"devDependencies": {
14+
"@changesets/cli": "^2.28.1",
15+
"@eslint/compat": "^1.2.5",
16+
"@eslint/js": "^9.18.0",
17+
"eslint": "^9.18.0",
18+
"eslint-config-prettier": "^10.0.1",
19+
"eslint-plugin-svelte": "^2.46.1",
20+
"prettier": "^3.5.1",
21+
"prettier-plugin-svelte": "^3.3.3",
22+
"typescript": "^5.0.0",
23+
"typescript-eslint": "^8.20.0"
24+
},
25+
"repository": {
26+
"directory": "./svelte-themes",
27+
"type": "git",
28+
"url": "https://github.com/elliott-with-the-longest-name-on-github/svelte-themes.git"
29+
},
30+
"engines": {
31+
"node": ">=20",
32+
"pnpm": ">=9"
33+
},
34+
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
3435
}

0 commit comments

Comments
 (0)