chore: install changeset (#261)

This commit is contained in:
Fazza Razaq Amiarso 2023-02-03 01:33:51 +07:00 committed by GitHub
parent 13f96a4fe9
commit d6cf10f9fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 4080 additions and 0 deletions

8
.changeset/README.md Normal file
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
.changeset/config.json Normal file
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": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}

26
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Dependencies
run: npm i
- name: Create Release Pull Request
uses: changesets/action@v1
with:
commit: "chore: Update version for release"
title: "chore: Update version for release"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

4034
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -39,6 +39,7 @@
"configs/*"
],
"dependencies": {
"@changesets/cli": "^2.26.0",
"prettier-plugin-astro": "^0.7.0",
"prompt-sync": "^4.2.0",
"short-unique-id": "^4.4.4"