@okamjs/okam
Advanced tools
Comparing version 0.2.0 to 0.2.1
@@ -36,10 +36,11 @@ /* tslint:disable */ | ||
}; | ||
manifest?: boolean; | ||
manifestConfig?: { | ||
fileName: string; | ||
basePath: string; | ||
}; | ||
manifest?: | ||
| false | ||
| { | ||
fileName: string; | ||
basePath: string; | ||
}; | ||
mode?: 'development' | 'production'; | ||
define?: Record<string, string>; | ||
devtool?: 'source-map' | 'inline-source-map' | 'none'; | ||
devtool?: false | 'source-map' | 'inline-source-map'; | ||
externals?: Record< | ||
@@ -62,3 +63,3 @@ string, | ||
copy?: string[]; | ||
codeSplitting?: 'auto' | 'none'; | ||
codeSplitting?: false | 'auto'; | ||
providers?: Record<string, string[]>; | ||
@@ -69,13 +70,12 @@ publicPath?: string; | ||
platform?: 'node' | 'browser'; | ||
hmr?: boolean; | ||
hmrPort?: string; | ||
hmrHost?: string; | ||
px2rem?: boolean; | ||
px2remConfig?: { | ||
root: number; | ||
propBlackList: string[]; | ||
propWhiteList: string[]; | ||
selectorBlackList: string[]; | ||
selectorWhiteList: string[]; | ||
}; | ||
hmr?: false | { host?: string; port?: number }; | ||
px2rem?: | ||
| false | ||
| { | ||
root?: number; | ||
propBlackList?: string[]; | ||
propWhiteList?: string[]; | ||
selectorBlackList?: string[]; | ||
selectorWhiteList?: string[]; | ||
}; | ||
stats?: boolean; | ||
@@ -86,3 +86,3 @@ hash?: boolean; | ||
dynamicImportToRequire?: boolean; | ||
umd?: string; | ||
umd?: false | string; | ||
transformImport?: { | ||
@@ -98,25 +98,29 @@ libraryName: string; | ||
minify?: boolean; | ||
_minifish?: { | ||
mapping: Record<string, string>; | ||
metaPath?: string; | ||
inject?: Record< | ||
string, | ||
| { from: string; exclude?: string; preferRequire?: boolean } | ||
| { | ||
from: string; | ||
named: string; | ||
exclude?: string; | ||
preferRequire?: boolean; | ||
} | ||
| { | ||
from: string; | ||
namespace: true; | ||
exclude?: string; | ||
preferRequire?: boolean; | ||
} | ||
>; | ||
}; | ||
optimization?: { | ||
skipModules?: boolean; | ||
}; | ||
_minifish?: | ||
| false | ||
| { | ||
mapping: Record<string, string>; | ||
metaPath?: string; | ||
inject?: Record< | ||
string, | ||
| { from: string; exclude?: string; preferRequire?: boolean } | ||
| { | ||
from: string; | ||
named: string; | ||
exclude?: string; | ||
preferRequire?: boolean; | ||
} | ||
| { | ||
from: string; | ||
namespace: true; | ||
exclude?: string; | ||
preferRequire?: boolean; | ||
} | ||
>; | ||
}; | ||
optimization?: | ||
| false | ||
| { | ||
skipModules?: boolean; | ||
}; | ||
}; | ||
@@ -123,0 +127,0 @@ hooks: JsHooks; |
{ | ||
"name": "@okamjs/okam", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"main": "index.js", | ||
@@ -42,6 +42,6 @@ "types": "index.d.ts", | ||
"optionalDependencies": { | ||
"@okamjs/okam-darwin-arm64": "0.2.0", | ||
"@okamjs/okam-darwin-x64": "0.2.0", | ||
"@okamjs/okam-linux-x64-gnu": "0.2.0" | ||
"@okamjs/okam-darwin-arm64": "0.2.1", | ||
"@okamjs/okam-darwin-x64": "0.2.1", | ||
"@okamjs/okam-linux-x64-gnu": "0.2.1" | ||
} | ||
} |
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
367
12194
5