@talesofai/neta-skills 0.15.2 → 0.15.3
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/CHANGELOG.md +6 -0
- package/bin/commands/load.js +6 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/bin/commands/load.js
CHANGED
|
@@ -42,9 +42,12 @@ const IS_DEV = process.env["NODE_ENV"] === "development";
|
|
|
42
42
|
const logger = IS_DEV
|
|
43
43
|
? console
|
|
44
44
|
: {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
45
|
+
// biome-ignore lint/suspicious/noConsole: use console
|
|
46
|
+
error: console.error,
|
|
47
|
+
// biome-ignore lint/suspicious/noConsole: use console
|
|
48
|
+
warn: console.warn,
|
|
49
|
+
// biome-ignore lint/suspicious/noConsole: use console
|
|
50
|
+
info: console.info,
|
|
48
51
|
debug: () => { },
|
|
49
52
|
};
|
|
50
53
|
export const buildCommands = async (cli) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@talesofai/neta-skills",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.3",
|
|
4
4
|
"description": "Neta API pi coding agent skills for interacting with Neta API to generate images, videos, songs, and manage characters/elements.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|