@taskless/cli 0.0.4 → 0.0.5
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/dist/index.js +7 -9
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -5802,8 +5802,8 @@ async function Cr(s) {
|
|
|
5802
5802
|
{
|
|
5803
5803
|
name: "agents-md",
|
|
5804
5804
|
installedVersion: r,
|
|
5805
|
-
currentVersion: "0.0.
|
|
5806
|
-
current: r === "0.0.
|
|
5805
|
+
currentVersion: "0.0.5",
|
|
5806
|
+
current: r === "0.0.5"
|
|
5807
5807
|
}
|
|
5808
5808
|
]
|
|
5809
5809
|
});
|
|
@@ -5826,7 +5826,7 @@ const ls = {
|
|
|
5826
5826
|
async run({ args: s }) {
|
|
5827
5827
|
const e = me(s.dir ?? process.cwd()), t = ln(), n = await an(e);
|
|
5828
5828
|
if (n.length === 0) {
|
|
5829
|
-
await Er(e, "0.0.
|
|
5829
|
+
await Er(e, "0.0.5"), console.log(
|
|
5830
5830
|
"No tool directories detected. Wrote AGENTS.md with Taskless CLI reference."
|
|
5831
5831
|
);
|
|
5832
5832
|
return;
|
|
@@ -5877,7 +5877,7 @@ const jr = {
|
|
|
5877
5877
|
}
|
|
5878
5878
|
console.log(
|
|
5879
5879
|
JSON.stringify({
|
|
5880
|
-
version: "0.0.
|
|
5880
|
+
version: "0.0.5",
|
|
5881
5881
|
tools: t,
|
|
5882
5882
|
loggedIn: n !== void 0,
|
|
5883
5883
|
auth: i
|
|
@@ -6139,10 +6139,8 @@ const xr = 15e3, Vr = {
|
|
|
6139
6139
|
})
|
|
6140
6140
|
);
|
|
6141
6141
|
else {
|
|
6142
|
-
console.log(
|
|
6143
|
-
|
|
6144
|
-
`
|
|
6145
|
-
);
|
|
6142
|
+
console.log(`Generated ${String(l.rules.length)} rule(s):
|
|
6143
|
+
`);
|
|
6146
6144
|
for (const f of h)
|
|
6147
6145
|
console.log(` ${f}`);
|
|
6148
6146
|
}
|
|
@@ -6192,7 +6190,7 @@ const xr = 15e3, Vr = {
|
|
|
6192
6190
|
}, Yr = {
|
|
6193
6191
|
meta: {
|
|
6194
6192
|
name: "taskless",
|
|
6195
|
-
version: "0.0.
|
|
6193
|
+
version: "0.0.5",
|
|
6196
6194
|
description: "Taskless CLI"
|
|
6197
6195
|
},
|
|
6198
6196
|
args: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taskless/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "vite build",
|
|
30
30
|
"test": "vitest run",
|
|
31
|
-
"typecheck": "tsc --noEmit"
|
|
31
|
+
"typecheck": "tsc --noEmit",
|
|
32
|
+
"release": "pnpm build && pnpm publish --access public"
|
|
32
33
|
}
|
|
33
34
|
}
|