Quellcode durchsuchen

Add support for changeset tool for more efficient and organized code changes (#1553)

Paweł Kuna vor 2 Jahren
Ursprung
Commit
94b83d488d
6 geänderte Dateien mit 802 neuen und 30 gelöschten Zeilen
  1. 8 0
      .changeset/README.md
  2. 11 0
      .changeset/config.json
  3. 5 0
      .changeset/wet-games-float.md
  4. 30 0
      .github/workflows/release.yml
  5. 747 30
      package-lock.json
  6. 1 0
      package.json

+ 8 - 0
.changeset/README.md

@@ -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 - 0
.changeset/config.json

@@ -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": []
+}

+ 5 - 0
.changeset/wet-games-float.md

@@ -0,0 +1,5 @@
+---
+"@tabler/core": patch
+---
+
+Add support for changeset tool for more efficient and organized code changes

+ 30 - 0
.github/workflows/release.yml

@@ -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 }}

Datei-Diff unterdrückt, da er zu groß ist
+ 747 - 30
package-lock.json


+ 1 - 0
package.json

@@ -181,6 +181,7 @@
     "yargs": "^17.7.2"
   },
   "dependencies": {
+    "@changesets/cli": "^2.26.1",
     "@popperjs/core": "^2.11.7",
     "bootstrap": "5.3.0-alpha3"
   },

Einige Dateien werden nicht angezeigt, da zu viele Dateien in diesem Diff geändert wurden.