@push.rocks/smartrust 1.1.0
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/.gitea/workflows/default_nottags.yaml +66 -0
- package/.gitea/workflows/default_tags.yaml +124 -0
- package/.vscode/launch.json +11 -0
- package/.vscode/settings.json +26 -0
- package/changelog.md +22 -0
- package/dist_ts/00_commitinfo_data.d.ts +8 -0
- package/dist_ts/00_commitinfo_data.js +9 -0
- package/dist_ts/classes.rustbinarylocator.d.ts +28 -0
- package/dist_ts/classes.rustbinarylocator.js +126 -0
- package/dist_ts/classes.rustbridge.d.ts +39 -0
- package/dist_ts/classes.rustbridge.js +231 -0
- package/dist_ts/index.d.ts +3 -0
- package/dist_ts/index.js +4 -0
- package/dist_ts/interfaces/config.d.ts +40 -0
- package/dist_ts/interfaces/config.js +2 -0
- package/dist_ts/interfaces/index.d.ts +2 -0
- package/dist_ts/interfaces/index.js +3 -0
- package/dist_ts/interfaces/ipc.d.ts +36 -0
- package/dist_ts/interfaces/ipc.js +2 -0
- package/dist_ts/paths.d.ts +1 -0
- package/dist_ts/paths.js +3 -0
- package/dist_ts/plugins.d.ts +8 -0
- package/dist_ts/plugins.js +11 -0
- package/npmextra.json +24 -0
- package/package.json +25 -0
- package/readme.md +5 -0
- package/test/helpers/mock-rust-binary.mjs +62 -0
- package/test/test.rustbinarylocator.node.ts +98 -0
- package/test/test.rustbridge.node.ts +191 -0
- package/test/test.ts +12 -0
- package/ts/00_commitinfo_data.ts +8 -0
- package/ts/classes.rustbinarylocator.ts +140 -0
- package/ts/classes.rustbridge.ts +256 -0
- package/ts/index.ts +3 -0
- package/ts/interfaces/config.ts +42 -0
- package/ts/interfaces/index.ts +2 -0
- package/ts/interfaces/ipc.ts +40 -0
- package/ts/paths.ts +5 -0
- package/ts/plugins.ts +13 -0
- package/tsconfig.json +12 -0
package/ts/paths.ts
ADDED
package/ts/plugins.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// native scope
|
|
2
|
+
import * as path from 'path';
|
|
3
|
+
import * as fs from 'fs';
|
|
4
|
+
import * as childProcess from 'child_process';
|
|
5
|
+
import * as readline from 'readline';
|
|
6
|
+
import * as events from 'events';
|
|
7
|
+
|
|
8
|
+
export { path, fs, childProcess, readline, events };
|
|
9
|
+
|
|
10
|
+
// @push.rocks scope
|
|
11
|
+
import * as smartpath from '@push.rocks/smartpath';
|
|
12
|
+
|
|
13
|
+
export { smartpath };
|