@promptbook/cli 0.112.0-16 → 0.112.0-18
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/README.md +105 -49
- package/esm/index.es.js +3 -23
- package/esm/index.es.js.map +1 -1
- package/esm/src/version.d.ts +1 -1
- package/package.json +1 -1
- package/umd/index.umd.js +3 -23
- package/umd/index.umd.js.map +1 -1
- package/umd/src/version.d.ts +1 -1
package/esm/src/version.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
|
|
|
15
15
|
export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
|
|
16
16
|
/**
|
|
17
17
|
* Represents the version string of the Promptbook engine.
|
|
18
|
-
* It follows semantic versioning (e.g., `0.112.0-
|
|
18
|
+
* It follows semantic versioning (e.g., `0.112.0-17`).
|
|
19
19
|
*
|
|
20
20
|
* @generated
|
|
21
21
|
*/
|
package/package.json
CHANGED
package/umd/index.umd.js
CHANGED
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
* @generated
|
|
61
61
|
* @see https://github.com/webgptorg/promptbook
|
|
62
62
|
*/
|
|
63
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.112.0-
|
|
63
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.112.0-18';
|
|
64
64
|
/**
|
|
65
65
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
66
66
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -39646,22 +39646,12 @@
|
|
|
39646
39646
|
});
|
|
39647
39647
|
}
|
|
39648
39648
|
/**
|
|
39649
|
-
* Initializes environment
|
|
39649
|
+
* Initializes environment for this script.
|
|
39650
39650
|
*
|
|
39651
39651
|
* @private utility for `findFreshEmojiTag`
|
|
39652
39652
|
*/
|
|
39653
39653
|
function initializeFindFreshEmojiTagRun() {
|
|
39654
39654
|
dotenv__namespace.config({ path: '.env' });
|
|
39655
|
-
if (process.cwd() !== path.join(__dirname, '../..')) {
|
|
39656
|
-
console.error(colors__default["default"].red(_spaceTrim.spaceTrim(`
|
|
39657
|
-
CWD must be root of the project
|
|
39658
|
-
|
|
39659
|
-
Script: find-fresh-emoji-tag.ts
|
|
39660
|
-
Current CWD: ${process.cwd()}
|
|
39661
|
-
Expected CWD: ${path.join(__dirname, '../..')}
|
|
39662
|
-
`)));
|
|
39663
|
-
process.exit(1);
|
|
39664
|
-
}
|
|
39665
39655
|
}
|
|
39666
39656
|
/**
|
|
39667
39657
|
* Finds fresh emoji tags that are not yet used in the codebase.
|
|
@@ -39951,22 +39941,12 @@
|
|
|
39951
39941
|
});
|
|
39952
39942
|
}
|
|
39953
39943
|
/**
|
|
39954
|
-
* Initializes environment
|
|
39944
|
+
* Initializes environment for this script.
|
|
39955
39945
|
*
|
|
39956
39946
|
* @private utility for `findRefactorCandidates`
|
|
39957
39947
|
*/
|
|
39958
39948
|
function initializeFindRefactorCandidatesRun() {
|
|
39959
39949
|
dotenv__namespace.config({ path: '.env' });
|
|
39960
|
-
if (process.cwd() !== path.join(__dirname, '../..')) {
|
|
39961
|
-
console.error(colors__default["default"].red(_spaceTrim.spaceTrim(`
|
|
39962
|
-
CWD must be root of the project
|
|
39963
|
-
|
|
39964
|
-
Script: find-refactor-candidates.ts
|
|
39965
|
-
Current CWD: ${process.cwd()}
|
|
39966
|
-
Expected CWD: ${path.join(__dirname, '../..')}
|
|
39967
|
-
`)));
|
|
39968
|
-
process.exit(1);
|
|
39969
|
-
}
|
|
39970
39950
|
}
|
|
39971
39951
|
/**
|
|
39972
39952
|
* Orchestrates scanning for refactor candidates and generating prompts.
|