Skip to content

Commit c125609

Browse files
committed
ci: update dependencies
1 parent 5a91e6c commit c125609

File tree

4 files changed

+21
-23
lines changed

4 files changed

+21
-23
lines changed

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"changelog": "@changesets/cli/changelog",
44
"commit": true,
55
"access": "public",
6-
"fixed": [["autostore", "@autostorejs/react", "@autostorejs/syncer", "@autostorejs/form"]],
6+
"fixed": [["autostore", "@autostorejs/react", "@autostorejs/syncer", "@autostorejs/form", "@autostorejs/devtools"]],
77
"linked": [],
88
"baseBranch": "master",
99
"updateInternalDependencies": "patch",

packages/form/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
},
3232
"dependencies": {
3333
"@iconify-json/lucide": "^1.2.69",
34-
"@lit/context": "^1.1.5",
34+
"@lit/context": "^1.1.6",
3535
"@shoelace-style/shoelace": "^2.20.1",
3636
"flex-tools": "^1.5.9",
37-
"lit": "^3.3.1",
37+
"lit": "3.2.1",
3838
"themepro": "^1.0.7"
3939
},
4040
"devDependencies": {

packages/form/tsup.config.ts

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
1-
import { gzip } from 'zlib'
2-
import { promisify } from 'node:util'
3-
import { readFileSync } from 'node:fs'
4-
import { defineConfig } from 'tsup'
5-
import path from 'node:path'
6-
import fs from 'node:fs'
1+
import { gzip } from "zlib";
2+
import { promisify } from "node:util";
3+
import { readFileSync } from "node:fs";
4+
import { defineConfig } from "tsup";
5+
import path from "node:path";
6+
import fs from "node:fs";
77

8-
9-
const gzipPromise = promisify(gzip)
8+
const gzipPromise = promisify(gzip);
109
// import Sonda from 'sonda/esbuild';
1110

12-
13-
const themeproPath = path.join(import.meta.dirname,`node_modules/themepro/dist`)
14-
console.log("themeproPath=",themeproPath)
11+
const themeproPath = path.join(import.meta.dirname, `node_modules/themepro/dist`);
12+
console.log("themeproPath=", themeproPath);
1513
export default defineConfig([
1614
{
1715
entry: ["src/index.ts"],
@@ -23,7 +21,7 @@ export default defineConfig([
2321
clean: true,
2422
treeshake: true,
2523
minify: true,
26-
noExternal: ["flex-tools"],
24+
noExternal: ["flex-tools", "lit", "@lit/context"],
2725
onSuccess: async () => {
2826
const cjsFile = readFileSync("dist/index.cjs");
2927
const esmFile = readFileSync("dist/index.js");

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)