whet 0.0.4 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/StringBuf.d.ts +13 -0
- package/bin/StringBuf.js +25 -0
- package/bin/haxe/CallStack.d.ts +41 -0
- package/bin/haxe/CallStack.js +96 -0
- package/bin/haxe/NativeStackTrace.js +147 -0
- package/bin/whet/Log.js +3 -0
- package/bin/whet/Project.d.ts +5 -2
- package/bin/whet/Project.js +32 -9
- package/bin/whet/Source.d.ts +2 -2
- package/bin/whet/Source.js +21 -5
- package/bin/whet/SourceHash.d.ts +7 -1
- package/bin/whet/SourceHash.js +93 -7
- package/bin/whet/SourceId.d.ts +1 -0
- package/bin/whet/SourceId.js +37 -28
- package/bin/whet/Stone.d.ts +21 -5
- package/bin/whet/Stone.js +63 -18
- package/bin/whet/Utils.d.ts +8 -2
- package/bin/whet/Utils.js +25 -5
- package/bin/whet/Whet.js +4 -1
- package/bin/whet/cache/BaseCache.js +18 -17
- package/bin/whet/cache/CacheManager.d.ts +5 -0
- package/bin/whet/cache/CacheManager.js +21 -12
- package/bin/whet/cache/FileCache.js +83 -43
- package/bin/whet/magic/RoutePathType.js +10 -4
- package/bin/whet/magic/RouteType.d.ts +4 -3
- package/bin/whet/magic/RouteType.js +31 -13
- package/bin/whet/magic/StoneId.d.ts +1 -0
- package/bin/whet/magic/StoneId.js +11 -1
- package/bin/whet/route/Route.d.ts +5 -1
- package/bin/whet/route/Route.js +33 -13
- package/bin/whet/route/Router.js +27 -36
- package/bin/whet/stones/Files.js +25 -16
- package/bin/whet/stones/JsonStone.js +7 -6
- package/bin/whet/stones/RemoteFile.js +5 -7
- package/bin/whet/stones/Server.d.ts +1 -2
- package/bin/whet/stones/Server.js +30 -22
- package/bin/whet/stones/Zip.js +17 -11
- package/bin/whet/stones/haxe/HaxeBuild.d.ts +2 -0
- package/bin/whet/stones/haxe/HaxeBuild.js +44 -63
- package/bin/whet/stones/haxe/Hxml.js +39 -24
- package/bin/whet.d.ts +3 -0
- package/bin/whet.js +3 -0
- package/package.json +1 -1
package/bin/whet.d.ts
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
|
|
2
|
+
export {addOption} from "./whet/Project"
|
|
2
3
|
export {ZipStone} from "./whet/stones/Zip"
|
|
3
4
|
export {ZipConfig} from "./whet/stones/Zip"
|
|
5
|
+
export {Utils} from "./whet/Utils"
|
|
4
6
|
export {Stone} from "./whet/Stone"
|
|
5
7
|
export {ServerConfig} from "./whet/stones/Server"
|
|
6
8
|
export {Server} from "./whet/stones/Server"
|
|
7
9
|
export {Router} from "./whet/route/Router"
|
|
10
|
+
export {Route} from "./whet/route/Route"
|
|
8
11
|
export {RemoteFileConfig} from "./whet/stones/RemoteFile"
|
|
9
12
|
export {RemoteFile} from "./whet/stones/RemoteFile"
|
|
10
13
|
export {Project} from "./whet/Project"
|
package/bin/whet.js
CHANGED
|
@@ -5,10 +5,13 @@ import {Register} from "./genes/Register.js"
|
|
|
5
5
|
const $global = Register.$global
|
|
6
6
|
|
|
7
7
|
Whet_Fields_.main()
|
|
8
|
+
export {addOption} from "./whet/Project.js"
|
|
8
9
|
export {ZipStone} from "./whet/stones/Zip.js"
|
|
10
|
+
export {Utils} from "./whet/Utils.js"
|
|
9
11
|
export {Stone} from "./whet/Stone.js"
|
|
10
12
|
export {Server} from "./whet/stones/Server.js"
|
|
11
13
|
export {Router} from "./whet/route/Router.js"
|
|
14
|
+
export {Route} from "./whet/route/Route.js"
|
|
12
15
|
export {RemoteFile} from "./whet/stones/RemoteFile.js"
|
|
13
16
|
export {Project} from "./whet/Project.js"
|
|
14
17
|
export {Log} from "./whet/Log.js"
|