Skip to content

Commit db31c8b

Browse files
authored
Merge pull request #69 from bholmesdev/changeset-release/main
[ci] release
2 parents e67a9ba + c5cc0c1 commit db31c8b

File tree

6 files changed

+3760
-7566
lines changed

6 files changed

+3760
-7566
lines changed

.changeset/beige-needles-tell.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

packages/query/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# simple-stack-query
2+
3+
## 0.0.2
4+
5+
### Patch Changes
6+
7+
- [#68](https://github.com/bholmesdev/simple-stack/pull/68) [`017e3ea`](https://github.com/bholmesdev/simple-stack/commit/017e3ea9de946148b7c02ae1b63e360ef45e9a99) Thanks [@bholmesdev](https://github.com/bholmesdev)! - introduces the new `simple-stack-query` package, a simple library to query the DOM from your Astro components.
8+
9+
```astro
10+
<button data-target={$('btn')}>Click me</button>
11+
12+
<script>
13+
ready(() => {
14+
$('btn').addEventListener('click', () => {
15+
console.log("It's like JQuery but not!");
16+
});
17+
});
18+
</script>
19+
```
20+
21+
Visit the package README for more information.
22+
23+
- Updated dependencies [[`017e3ea`](https://github.com/bholmesdev/simple-stack/commit/017e3ea9de946148b7c02ae1b63e360ef45e9a99)]:
24+

packages/query/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simple-stack-query",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "Select elements in Astro without the hassle",
55
"type": "module",
66
"scripts": {

packages/scope/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# vite-plugin-simple-scope
22

3+
## 2.0.1
4+
5+
### Patch Changes
6+
7+
- [#68](https://github.com/bholmesdev/simple-stack/pull/68) [`017e3ea`](https://github.com/bholmesdev/simple-stack/commit/017e3ea9de946148b7c02ae1b63e360ef45e9a99) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix type error applying the Simple scope plugin to a `.ts` config file.
8+
39
## 2.0.0
410

511
### Major Changes

packages/scope/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vite-plugin-simple-scope",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "Get a scoped ID for whatever file you're in. Zero client-side JS.",
55
"type": "module",
66
"exports": {

0 commit comments

Comments
 (0)