@getlang/get
Advanced tools
Comparing version 0.0.10 to 0.0.11
import type { Program } from '@getlang/parser'; | ||
import type { InternalHooks } from './execute/execute'; | ||
export { parse, desugar, print, NodeKind } from '@getlang/parser'; | ||
export { RuntimeError } from '@getlang/utils'; | ||
export * as errors from '@getlang/utils'; | ||
export { version } from './package.json'; | ||
export { parse, desugar, print, NodeKind } from '@getlang/parser'; | ||
export type { Program } from '@getlang/parser'; | ||
export type RequestHook = InternalHooks['request']; | ||
@@ -7,0 +9,0 @@ export type ImportHook = (module: string) => string | Promise<string>; |
@@ -1,9 +0,9 @@ | ||
import { wait } from '@getlang/utils'; | ||
import { wait, ImportError } from '@getlang/utils'; | ||
import { parse, desugar } from '@getlang/parser'; | ||
import { execute as exec } from './execute/execute'; | ||
import * as http from './execute/net/http'; | ||
import { ImportError } from '@getlang/utils'; | ||
export { parse, desugar, print, NodeKind } from '@getlang/parser'; | ||
export { RuntimeError } from '@getlang/utils'; | ||
export * as errors from '@getlang/utils'; | ||
export { version } from './package.json'; | ||
export { parse, desugar, print, NodeKind } from '@getlang/parser'; | ||
function buildHooks(hooks = {}) { | ||
@@ -10,0 +10,0 @@ return { |
{ | ||
"name": "@getlang/get", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"license": "Apache-2.0", | ||
@@ -5,0 +5,0 @@ "type": "module", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
31427
29
794