@youcan/create-app 2.3.1 → 2.3.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/bin/exec.js CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env node
2
+ import process from 'node:process';
2
3
 
3
4
  process.removeAllListeners('warning');
4
5
 
@@ -1,8 +1,8 @@
1
1
  import { cwd } from 'node:process';
2
- import { Flags } from '@oclif/core';
3
- import { Cli, Path, System } from '@youcan/cli-kit';
4
2
  import initPrompt from '../prompts/init.js';
5
3
  import initService from '../services/init.js';
4
+ import { Flags } from '@oclif/core';
5
+ import { Cli, Path, System } from '@youcan/cli-kit';
6
6
 
7
7
  class Init extends Cli.Command {
8
8
  static aliases = ['create-app'];
@@ -1,4 +1,5 @@
1
1
  import path from 'node:path';
2
+ import process from 'node:process';
2
3
  import { String, Path, Github, Filesystem, Tasks, Git, System } from '@youcan/cli-kit';
3
4
 
4
5
  async function initService(command, options) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@youcan/create-app",
3
3
  "type": "module",
4
- "version": "2.3.1",
4
+ "version": "2.3.3",
5
5
  "description": "A CLI for creating YouCan Shop apps",
6
6
  "author": "YouCan <contact@youcan.shop> (https://youcan.shop)",
7
7
  "license": "MIT",
@@ -23,7 +23,7 @@
23
23
  ],
24
24
  "dependencies": {
25
25
  "@oclif/core": "^2.15.0",
26
- "@youcan/cli-kit": "2.3.1"
26
+ "@youcan/cli-kit": "2.3.3"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@oclif/plugin-legacy": "^1.3.0",