create-meith 0.23.2 → 0.23.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/dist/bin.mjs +1 -1
- package/package.json +1 -1
- package/src/bin.ts +1 -1
package/dist/bin.mjs
CHANGED
|
@@ -1865,7 +1865,7 @@ async function run(argv, version) {
|
|
|
1865
1865
|
}
|
|
1866
1866
|
|
|
1867
1867
|
// src/bin.ts
|
|
1868
|
-
var result = await run(process.argv.slice(2), "0.23.
|
|
1868
|
+
var result = await run(process.argv.slice(2), "0.23.3");
|
|
1869
1869
|
for (const line of result.lines) {
|
|
1870
1870
|
if (result.code === 0) console.log(line);
|
|
1871
1871
|
else console.error(line);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-meith",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.3",
|
|
4
4
|
"description": "Scaffold a Meith board, plugin or theme — npx create-meith <name> writes a deployable board workspace; --plugin and --theme write extension workspaces built on the published kits.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
package/src/bin.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { run } from './cli'
|
|
3
3
|
|
|
4
|
-
const result = await run(process.argv.slice(2), '0.23.
|
|
4
|
+
const result = await run(process.argv.slice(2), '0.23.3')
|
|
5
5
|
for (const line of result.lines) {
|
|
6
6
|
if (result.code === 0) console.log(line)
|
|
7
7
|
else console.error(line)
|