marketing-mindset 1.3.1 → 1.3.2
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/cli.js +1 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -31,7 +31,7 @@ function flags(argv) {
|
|
|
31
31
|
argv.forEach((a, i) => {
|
|
32
32
|
if (a.startsWith("--")) {
|
|
33
33
|
const v = argv[i + 1];
|
|
34
|
-
out[a.slice(2)] = v && !v.startsWith("--") ? Number(v) : true;
|
|
34
|
+
out[a.slice(2)] = v && !v.startsWith("--") ? (isNaN(Number(v)) ? v : Number(v)) : true;
|
|
35
35
|
}
|
|
36
36
|
});
|
|
37
37
|
return out;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "marketing-mindset",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "A marketer's operating mindset as an installable agent skill and CLI: test-size floors, kill rules, agent-readiness checklist, marketing-engineer job description. npx marketing-mindset sample|kill|aeo|jd|sections|read|install.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-skill",
|