Skip to content

Commit

Permalink
chore: changeset version and lib-helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
shinokada committed Apr 2, 2024
1 parent e8fda3a commit e868674
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 26 deletions.
7 changes: 2 additions & 5 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# 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)
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)
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)
7 changes: 2 additions & 5 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": [
"@svitejs/changesets-changelog-github-compact",
{ "repo": "themesberg/flowbite-svelte-blocks" }
],
"changelog": ["@svitejs/changesets-changelog-github-compact", { "repo": "themesberg/flowbite-svelte-blocks" }],
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
}
5 changes: 0 additions & 5 deletions .changeset/silver-mice-melt.md

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/playwright-and-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
- name: Run playwright tests
env:
NODE_OPTIONS: '--max_old_space_size=4096'
run: pnpm test:integration
run: pnpm test:integration
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
# Changelog

## 1.1.1

### Patch Changes

- fix: flowbite-svelte-icons update ([`e8fda3a27b74b6c77a78665d21207ebf758cae11`](https://github.com/themesberg/flowbite-svelte-blocks/commit/e8fda3a27b74b6c77a78665d21207ebf758cae11))

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.1.0](https://github.com/themesberg/flowbite-svelte-blocks/compare/v0.5.1...v1.1.0) (2024-01-12)


### Features

* sveltekit 2 and dependencies update ([bbd776c](https://github.com/themesberg/flowbite-svelte-blocks/commit/bbd776c0846e531abb7a01e278a189a2bf5ec0ff))
* verion 1 ([8402ef8](https://github.com/themesberg/flowbite-svelte-blocks/commit/8402ef81ce0de2f78da667f89fd7ae92b1ce9f63))

- sveltekit 2 and dependencies update ([bbd776c](https://github.com/themesberg/flowbite-svelte-blocks/commit/bbd776c0846e531abb7a01e278a189a2bf5ec0ff))
- verion 1 ([8402ef8](https://github.com/themesberg/flowbite-svelte-blocks/commit/8402ef81ce0de2f78da667f89fd7ae92b1ce9f63))

### Bug Fixes

* package.json scripts ([1aa0b8d](https://github.com/themesberg/flowbite-svelte-blocks/commit/1aa0b8d74c2b7590656eaac6976d21ed2f33c7e2))
- package.json scripts ([1aa0b8d](https://github.com/themesberg/flowbite-svelte-blocks/commit/1aa0b8d74c2b7590656eaac6976d21ed2f33c7e2))

### [0.5.1](https://github.com/themesberg/flowbite-svelte-blocks/compare/v0.4.14...v0.5.1) (2023-09-03)

Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flowbite-svelte-blocks",
"version": "1.1.0",
"version": "1.1.1",
"description": "Flowbite blocks components for Svelte",
"main": "dist/index.js",
"packageManager": "[email protected]",
Expand Down Expand Up @@ -29,7 +29,7 @@
"gen:docs": "svelte-lib-helpers docs",
"gen:compo-data": "svelte-lib-helpers compo-data",
"copy:package": "svelte-lib-helpers package",
"lib-helpers": "npm run gen:docs && npm run build && npm run gen:exports && npm run copy:package && npm run format",
"lib-helpers": "npm run gen:docs && npm run package && npm run gen:exports && npm run copy:package",
"package:publish": "npm run lib-helpers && standard-version && git push --follow-tags origin main && npm publish"
},
"devDependencies": {
Expand Down Expand Up @@ -323,6 +323,7 @@
"./Twitter.svelte": {
"types": "./dist/utils/Twitter.svelte.d.ts",
"svelte": "./dist/utils/Twitter.svelte"
}
},
"./package.json": "./package.json"
}
}
}
4 changes: 3 additions & 1 deletion src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
<script async src="https://www.googletagmanager.com/gtag/js?id=G-56Q5D99ZCL" defer></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());

gtag('config', 'G-56Q5D99ZCL');
Expand Down

0 comments on commit e868674

Please sign in to comment.