Skip to content

Commit 5a1a0aa

Browse files
[Changesets] Create versioned packages for publishing (#85)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent f49fd2a commit 5a1a0aa

File tree

12 files changed

+39
-31
lines changed

12 files changed

+39
-31
lines changed

.changeset/chilly-files-stay.md

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

.changeset/empty-seals-fail.md

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

.changeset/fifty-points-buy.md

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

.changeset/social-chefs-drive.md

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
export function setupCounter(element: HTMLButtonElement) {
2-
let counter = 0
2+
let counter = 0;
33
const setCounter = (count: number) => {
4-
counter = count
5-
element.innerHTML = `count is ${counter}`
6-
}
7-
element.addEventListener('click', () => setCounter(counter + 1))
8-
setCounter(0)
4+
counter = count;
5+
element.innerHTML = `count is ${counter}`;
6+
};
7+
element.addEventListener('click', () => setCounter(counter + 1));
8+
setCounter(0);
99
}

example-repo-init/copy-sample.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const __dirname = import.meta.dirname;
77
async function unlinkIfExists(filePath) {
88
try {
99
await fs.unlink(filePath);
10-
} catch (err) { // eslint-disable-line @typescript-eslint/no-unused-vars
10+
} catch (err) {
1111
// do nothing
1212
}
1313
}

packages/integrations/nextjs/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @varlock/nextjs-integration
22

3+
## 0.0.4
4+
5+
### Patch Changes
6+
7+
- [#86](https://github.com/dmno-dev/varlock/pull/86) [`31a479d`](https://github.com/dmno-dev/varlock/commit/31a479d7b9e725810ef20e30312d687c588e8e10) Thanks [@theoephraim](https://github.com/theoephraim)! - fix dev reloading behaviour
8+
9+
- Updated dependencies [[`7407999`](https://github.com/dmno-dev/varlock/commit/7407999d58394fe5ce6e5f9667cd1a540d9e4951), [`f49fd2a`](https://github.com/dmno-dev/varlock/commit/f49fd2a2c07f8fc58654d4a1c1bac9fd9ba7df3e), [`33874e8`](https://github.com/dmno-dev/varlock/commit/33874e863227759b299b1745158018fe2393a142)]:
10+
11+
312
## 0.0.3
413

514
### Patch Changes

packages/integrations/nextjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@varlock/nextjs-integration",
33
"description": "drop-in replacement for @next/env that uses varlock to load .env files with validation and extra security features",
4-
"version": "0.0.3",
4+
"version": "0.0.4",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/dmno-dev/varlock.git",
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# @varlock/vite-integration
2+
3+
## 0.0.1
4+
5+
### Patch Changes
6+
7+
- [#77](https://github.com/dmno-dev/varlock/pull/77) [`f49fd2a`](https://github.com/dmno-dev/varlock/commit/f49fd2a2c07f8fc58654d4a1c1bac9fd9ba7df3e) Thanks [@theoephraim](https://github.com/theoephraim)! - vite integration
8+
9+
- Updated dependencies [[`7407999`](https://github.com/dmno-dev/varlock/commit/7407999d58394fe5ce6e5f9667cd1a540d9e4951), [`f49fd2a`](https://github.com/dmno-dev/varlock/commit/f49fd2a2c07f8fc58654d4a1c1bac9fd9ba7df3e), [`33874e8`](https://github.com/dmno-dev/varlock/commit/33874e863227759b299b1745158018fe2393a142)]:
10+

packages/integrations/vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@varlock/vite-integration",
33
"description": "Vite plugin to use varlock for .env file loading - adds validation, type-safety, and extra security features",
4-
"version": "0.0.0",
4+
"version": "0.0.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/dmno-dev/varlock.git",

0 commit comments

Comments
 (0)