changesets init

This commit is contained in:
codecalm
2024-05-22 21:06:24 +02:00
parent 199637c86e
commit dbe05b5f56
6 changed files with 1255 additions and 4 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@3.0.0/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": true,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}

View File

@@ -0,0 +1,8 @@
---
"@tabler/flags": patch
"@tabler/flags-png": patch
"@tabler/flags-react": patch
"@tabler/flags-vue": patch
---
changesets init

View File

@@ -12,8 +12,11 @@
"author": "",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.27.3",
"@testing-library/jest-dom": "^6.4.2",
"concurrently": "^8.2.2",
"glob": "^10.3.10",
"jest-serializer-html": "^7.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-license": "^3.3.1",
"rollup-plugin-visualizer": "^5.12.0",
@@ -21,8 +24,6 @@
"svgson": "^5.3.1",
"tsup": "^8.0.2",
"typescript": "^5.4.2",
"vitest": "^1.4.0",
"jest-serializer-html": "^7.1.0",
"@testing-library/jest-dom": "^6.4.2"
"vitest": "^1.4.0"
}
}

View File

@@ -3,8 +3,9 @@
"version": "0.0.1",
"scripts": {
"build": "pnpm run clean && pnpm run copy && node ./build.mjs",
"copy": "pnpm run copy:license",
"copy": "pnpm run copy:license && pnpm run copy:list",
"copy:license": "cp ../../LICENSE ./LICENSE",
"copy:list": "cp ../../flags.json ./dist/flags.json",
"clean": "find . ! -name '.gitkeep' -path './dist/*' -exec rm -rf {} +"
},
"files": [

1222
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff