Skip to content

Commit a81112e

Browse files
New version
1 parent 466ba9a commit a81112e

File tree

9 files changed

+33
-18
lines changed

9 files changed

+33
-18
lines changed

.changeset/tidy-ligers-matter.md

-5
This file was deleted.

lib/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @code-hike/lighter
22

3+
## 0.1.6
4+
5+
### Patch Changes
6+
7+
- 466ba9a: Fix resolve imports
8+
39
## 0.1.5
410

511
### Patch Changes

lib/dist/index.cjs.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/dist/index.esm.mjs

+4-4
Original file line numberDiff line numberDiff line change
@@ -2563,22 +2563,22 @@ async function fetchJSON(endpoint) {
25632563
if (typeof fetch === "function") {
25642564
console.log(
25652565
`using fetch`,
2566-
`https://lighter.codehike.org/api/${endpoint}&v=${"0.1.5"}`
2566+
`https://lighter.codehike.org/api/${endpoint}&v=${"0.1.6"}`
25672567
);
25682568
const r = await fetch(
2569-
`https://lighter.codehike.org/api/${endpoint}&v=${"0.1.5"}`
2569+
`https://lighter.codehike.org/api/${endpoint}&v=${"0.1.6"}`
25702570
);
25712571
return await r.json();
25722572
}
25732573
console.log(
25742574
`using https`,
2575-
`https://lighter.codehike.org/api/${endpoint}&v=${"0.1.5"}`
2575+
`https://lighter.codehike.org/api/${endpoint}&v=${"0.1.6"}`
25762576
);
25772577

25782578
const https = await import('https');
25792579
const options = {
25802580
host: "lighter.codehike.org",
2581-
path: `/api/${endpoint}&v=${"0.1.5"}`,
2581+
path: `/api/${endpoint}&v=${"0.1.6"}`,
25822582
method: "GET",
25832583
};
25842584

lib/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-hike/lighter",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"license": "MIT",
55
"main": "./dist/index.cjs.js",
66
"module": "./dist/index.esm.mjs",

test/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# lighter-test
22

3+
## 0.1.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [466ba9a]
8+
- @code-hike/lighter@0.1.6
9+
310
## 0.1.5
411

512
### Patch Changes

test/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "lighter-test",
33
"private": true,
44
"type": "module",
5-
"version": "0.1.5",
5+
"version": "0.1.6",
66
"dependencies": {
7-
"@code-hike/lighter": "0.1.5"
7+
"@code-hike/lighter": "0.1.6"
88
}
99
}

web/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# lighter-web
22

3+
## 0.1.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [466ba9a]
8+
- @code-hike/lighter@0.1.6
9+
310
## 0.1.5
411

512
### Patch Changes

web/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"private": "true",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"name": "lighter-web",
55
"scripts": {
66
"dev": "next dev",
77
"build": "next build",
88
"start": "next start"
99
},
1010
"dependencies": {
11-
"@code-hike/lighter": "0.1.5",
11+
"@code-hike/lighter": "0.1.6",
1212
"next": "^13.0.7",
1313
"react": "^18.2.0",
1414
"react-dom": "^18.2.0"

0 commit comments

Comments
 (0)