-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
32 additions
and
2 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 |
---|---|---|
|
@@ -33,7 +33,8 @@ await build({ | |
mappings: { | ||
"https://deno.land/x/[email protected]/src/index.ts": "is-what", | ||
"https://deno.land/x/[email protected]/mod.ts": "outdent", | ||
"./src/utils/flock.deno.ts": "./src/utils/flock.node.ts" | ||
"./src/utils/flock.deno.ts": "./src/utils/flock.node.ts", | ||
"./src/hooks/useSyncCache.ts": "./src/hooks/useSyncCache.node.ts" | ||
}, | ||
package: { | ||
name: "libpkgx", | ||
|
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// the sqlite lib we use only works in deno | ||
|
||
export default async function() | ||
{} | ||
|
||
export function provides(_program: string) { | ||
throw new Error() | ||
} | ||
|
||
export function dependencies(_project: string) { | ||
throw new Error() | ||
} | ||
|
||
export function completion(_prefix: string) { | ||
throw new Error() | ||
} | ||
|
||
/// is the cache available? | ||
export function available() { | ||
return false | ||
} | ||
|
||
export function companions(_project: string) { | ||
throw new Error() | ||
} | ||
|
||
export function runtime_env(_project: string) { | ||
throw new Error() | ||
} |