@beaket/ui 0.1.0 → 0.1.1

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.mjs CHANGED
@@ -8,5 +8,4 @@ const script = join(__dirname, "..", "src", "index.ts");
8
8
 
9
9
  spawnSync("npx", ["tsx", script, ...process.argv.slice(2)], {
10
10
  stdio: "inherit",
11
- shell: true,
12
11
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beaket/ui",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "CLI for adding Beaket UI components to your project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -52,7 +52,7 @@ export async function init() {
52
52
  type: "text",
53
53
  name: "tailwindCss",
54
54
  message: "Where is your Tailwind CSS file?",
55
- initial: "src/styles.css",
55
+ initial: "src/index.css",
56
56
  },
57
57
  {
58
58
  type: "text",
package/src/index.ts CHANGED
@@ -8,7 +8,7 @@ const program = new Command();
8
8
  program
9
9
  .name("@beaket/ui")
10
10
  .description("CLI for adding Beaket UI components to your project")
11
- .version("0.1.0");
11
+ .version("0.1.1");
12
12
 
13
13
  program.command("init").description("Initialize Beaket UI in your project").action(init);
14
14
 
@@ -36,7 +36,6 @@ export async function installDependencies(deps: string[]): Promise<void> {
36
36
  return new Promise((resolve, reject) => {
37
37
  const child = spawn(packageManager, [installCmd, ...deps], {
38
38
  stdio: "inherit",
39
- shell: true,
40
39
  });
41
40
 
42
41
  child.on("close", (code) => {