-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 [plaoc/desktop-dev] 修复deno install relative path错误
- Loading branch information
1 parent
e7a9184
commit cfd6c45
Showing
4 changed files
with
34 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
{ | ||
"importMap": "import_map.json", | ||
"lock": false, | ||
"exclude": [ | ||
"**/assets/", | ||
|
@@ -18,6 +17,25 @@ | |
] | ||
} | ||
}, | ||
"imports": { | ||
"cbor-x": "https://esm.sh/v124/[email protected]", | ||
"@seald-io/nedb": "https://esm.sh/v124/@seald-io/[email protected]", | ||
"popmotion": "https://esm.sh/v124/[email protected]", | ||
"electron-store": "https://esm.sh/v124/[email protected]", | ||
"colors": "https://deno.land/[email protected]/fmt/colors.ts", | ||
"comlink": "https://esm.sh/v124/[email protected]", | ||
"electron": "https://esm.sh/v124/[email protected]", | ||
"extract-zip": "https://esm.sh/v124/[email protected]", | ||
"jszip": "https://esm.sh/v124/[email protected]", | ||
"lit": "https://esm.sh/v124/[email protected]", | ||
"lit/": "https://esm.sh/v124/[email protected]/", | ||
"mime": "https://esm.sh/v124/[email protected]", | ||
"node-forge": "https://esm.sh/v124/[email protected]", | ||
"source-map-support": "https://esm.sh/v124/[email protected]", | ||
"source-map-support/register": "https://esm.sh/v124/[email protected]/register.js", | ||
"zod": "https://esm.sh/v124/[email protected]", | ||
"tar": "https://esm.sh/v124/[email protected]" | ||
}, | ||
"tasks": { | ||
"dnt": "deno run -A ./scripts/dnt.ts", | ||
"bundle": "deno run -A ./scripts/bundle.ts", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
{ | ||
"lock": false, | ||
"exclude": [ | ||
"dist/", | ||
"bundle/", | ||
"build/" | ||
], | ||
"exclude": ["dist/", "bundle/", "build/"], | ||
"imports": { | ||
"https://deno.land/x/dweb/src/": "https://deno.land/x/dweb/src/", | ||
"zod": "https://esm.sh/v124/[email protected]", | ||
"cbor-x": "https://esm.sh/v124/[email protected]/es2022/cbor-x.mjs", | ||
"lit": "https://esm.sh/v124/[email protected]", | ||
"lit/": "https://esm.sh/v124/[email protected]/", | ||
"jimp": "https://esm.sh/v124/[email protected]", | ||
"jsqr": "https://esm.sh/v124/[email protected]" | ||
}, | ||
"tasks": { | ||
"build": "deno task build:client && deno task build:server && deno task build:demo", | ||
"build:client": "deno run -A ./scripts/npm-build.ts client", | ||
|
@@ -17,7 +22,6 @@ | |
"pub": "deno run -A ./scripts/npm-pub.ts", | ||
"test": "deno test -A --unstable --no-check ./test" | ||
}, | ||
"importMap": "import_map.json", | ||
"compilerOptions": { | ||
"allowJs": false, | ||
"strict": true, | ||
|
@@ -26,11 +30,7 @@ | |
}, | ||
"lint": { | ||
"rules": { | ||
"exclude": [ | ||
"no-namespace", | ||
"no-empty-interface", | ||
"require-await" | ||
] | ||
"exclude": ["no-namespace", "no-empty-interface", "require-await"] | ||
} | ||
}, | ||
"fmt": { | ||
|
@@ -42,4 +42,4 @@ | |
"proseWrap": "preserve" | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.