Skip to content

Commit 4a616ac

Browse files
committed
Fix(Example): Fix import errors
Fixes import errors in the example application.
1 parent b3a768d commit 4a616ac

File tree

7 files changed

+15
-9
lines changed

7 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.11] - 2025-04-08
9+
10+
### Fixed
11+
12+
- Fixes various issues in the example application.
13+
814
## [0.1.8] - 2025-04-08
915

1016
### Fixed

example/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
"test": "echo \"Error: no test specified\" && exit 1"
2020
},
2121
"dependencies": {
22-
"@codegoatx/goatee": "^0.1.10"
22+
"@codegoatx/goatee": "^0.1.11"
2323
}
2424
}

example/web/admin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// web/admin.ts
2-
import { Goatee } from "../src/Goatee.js";
2+
import { Goatee } from "@codegoatx/goatee";
33

44
const goatee = new Goatee();
55

example/web/contact.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Goatee } from "../src/Goatee.js";
1+
import { Goatee } from "@codegoatx/goatee";
22

33
const goatee = new Goatee();
44

example/web/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// web/index.js
2-
import { Goatee } from "../src/Goatee.js";
2+
import { Goatee } from "@codegoatx/goatee";
33

44
const goatee = new Goatee();
55

example/web/table.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Goatee } from "../src/Goatee.js";
1+
import { Goatee } from "@codegoatx/goatee";
22

33
const goatee = new Goatee();
44

0 commit comments

Comments
 (0)