@promptbook/cli 0.85.0-0 โ 0.85.0-10
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/promptbook-cli.js +2 -1
- package/esm/index.es.js +282 -137
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/utils.index.d.ts +2 -0
- package/esm/typings/src/cli/cli-commands/about.d.ts +0 -1
- package/esm/typings/src/execution/ExecutionTask.d.ts +7 -3
- package/esm/typings/src/remote-server/startRemoteServer.d.ts +1 -0
- package/esm/typings/src/remote-server/types/RemoteServerOptions.d.ts +6 -4
- package/esm/typings/src/utils/normalization/suffixUrl.d.ts +7 -0
- package/esm/typings/src/utils/normalization/suffixUrl.test.d.ts +1 -0
- package/package.json +1 -1
- package/umd/index.umd.js +280 -135
- package/umd/index.umd.js.map +1 -1
package/bin/promptbook-cli.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
// <- TODO: [๐บ] Ensure correct version of Node.js is used
|
|
3
|
+
// promptbook-cli.js
|
|
3
4
|
|
|
4
5
|
/**
|
|
5
6
|
* Note: [๐บ] Purpose of this file is to run CLI in production environment
|
|
@@ -11,6 +12,6 @@ const { _CLI } = require('../umd/index.umd.js');
|
|
|
11
12
|
_CLI._initialize_promptbookCli();
|
|
12
13
|
|
|
13
14
|
/**
|
|
14
|
-
* TODO:
|
|
15
|
+
* TODO: [๐ฉโ๐ฉโ๐งโ๐ฆ] During the build check that this file exists
|
|
15
16
|
* TODO: [๐] When more functionalities, rename
|
|
16
17
|
*/
|