@@ -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)
@@ -0,0 +1,11 @@
+{
+ "$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
+ "changelog": "@changesets/cli/changelog",
+ "commit": false,
+ "fixed": [],
+ "linked": [],
+ "access": "restricted",
+ "baseBranch": "main",
+ "updateInternalDependencies": "patch",
+ "ignore": []
+}
@@ -0,0 +1,5 @@
+---
+"@tabler/core": patch
+Add support for changeset tool for more efficient and organized code changes
@@ -0,0 +1,30 @@
+name: Release
+on:
+ push:
+ branches:
+ - dev-changesets-init
+ # - 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: yarn
+ - name: Create Release Pull Request
+ uses: changesets/action@v1
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -181,6 +181,7 @@
"yargs": "^17.7.2"
},
"dependencies": {
+ "@changesets/cli": "^2.26.1",
"@popperjs/core": "^2.11.7",
"bootstrap": "5.3.0-alpha3"