Squashed commit of the following:

commit 02ab774699
Merge: 0e5cda5 39b8b6a
Author: Ollie Taylor <13766232+OllieJT@users.noreply.github.com>
Date:   Thu Feb 23 13:33:00 2023 +0000

    Merge branch 'main' of https://github.com/OllieJT/svelte-podcast

commit 39b8b6a983
Merge: 0e5cda5 8260a20
Author: Ollie Taylor <13766232+OllieJT@users.noreply.github.com>
Date:   Thu Feb 23 13:29:46 2023 +0000

    Init Changesets (#4)

commit 8260a2078f
Author: Ollie Taylor <13766232+OllieJT@users.noreply.github.com>
Date:   Thu Feb 23 13:28:04 2023 +0000

    linting

commit 1336175d8a
Author: Ollie Taylor <13766232+OllieJT@users.noreply.github.com>
Date:   Thu Feb 23 13:26:45 2023 +0000

    update gh tooken name

commit fbc2d6c581
Author: Ollie Taylor <13766232+OllieJT@users.noreply.github.com>
Date:   Thu Feb 23 12:26:23 2023 +0000

    adds changeset to publish script

commit 2665d2fd54
Author: Ollie Taylor <13766232+OllieJT@users.noreply.github.com>
Date:   Thu Feb 23 12:26:11 2023 +0000

    updates changeset config

commit 517219f961
Author: Ollie Taylor <13766232+OllieJT@users.noreply.github.com>
Date:   Thu Feb 23 12:25:50 2023 +0000

    adds release script

commit dda33a4426
Author: Ollie Taylor <13766232+OllieJT@users.noreply.github.com>
Date:   Thu Feb 23 12:13:03 2023 +0000

    add changesets
This commit is contained in:
Ollie Taylor
2023-02-23 13:36:30 +00:00
parent 3e7ab99121
commit 17bf099518
5 changed files with 1553 additions and 27 deletions
+8
View File
@@ -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
View File
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
+10 -9
View File
@@ -3,6 +3,9 @@ on:
push: push:
branches: branches:
- 'main' - 'main'
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -19,13 +22,11 @@ jobs:
with: with:
cmd: install --frozen-lockfile cmd: install --frozen-lockfile
- name: yarn build - name: Create Release Pull Request or Publish
uses: borales/actions-yarn@v4 id: changesets
uses: changesets/action@v1
with: with:
cmd: build --frozen-lockfile publish: yarn run release
env:
- uses: JS-DevTools/npm-publish@v1 GITHUB_TOKEN: ${{ secrets.TOKEN }}
with: NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
token: ${{ secrets.NPM_TOKEN }}
access: public
package: ./package.json
+8 -8
View File
@@ -12,7 +12,8 @@
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .", "lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write ." "format": "prettier --plugin-search-dir . --write .",
"release": "yarn run build && changeset publish"
}, },
"exports": { "exports": {
".": { ".": {
@@ -27,28 +28,27 @@
"svelte": "^3.54.0" "svelte": "^3.54.0"
}, },
"devDependencies": { "devDependencies": {
"@changesets/cli": "^2.26.0",
"@playwright/test": "^1.28.1", "@playwright/test": "^1.28.1",
"@sveltejs/adapter-auto": "^2.0.0", "@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.5.0", "@sveltejs/kit": "^1.5.0",
"@sveltejs/package": "^2.0.0", "@sveltejs/package": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.45.0", "@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0", "@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0", "eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0", "eslint-plugin-svelte3": "^4.0.0",
"prettier": "^2.8.0", "eslint": "^8.28.0",
"just-clamp": "^4.2.0",
"prettier-plugin-svelte": "^2.8.1", "prettier-plugin-svelte": "^2.8.1",
"prettier": "^2.8.0",
"publint": "^0.1.9", "publint": "^0.1.9",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1", "svelte-check": "^3.0.1",
"svelte": "^3.54.0",
"tslib": "^2.4.1", "tslib": "^2.4.1",
"typescript": "^4.9.3", "typescript": "^4.9.3",
"vite": "^4.0.0" "vite": "^4.0.0"
}, },
"svelte": "./dist/index.js", "svelte": "./dist/index.js",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"type": "module", "type": "module"
"dependencies": {
"just-clamp": "^4.2.0"
}
} }
+1516 -10
View File
File diff suppressed because it is too large Load Diff