create-faas-app 3.7.0-beta.2 → 3.7.0-beta.4

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 CHANGED
@@ -1,10 +1,10 @@
1
1
  'use strict';
2
2
 
3
3
  var commander$1 = require('commander');
4
- var enquirer = require('enquirer');
4
+ var child_process = require('child_process');
5
5
  var fs = require('fs');
6
6
  var path = require('path');
7
- var child_process = require('child_process');
7
+ var enquirer = require('enquirer');
8
8
 
9
9
  // src/index.ts
10
10
  var Validator = {
package/dist/index.mjs CHANGED
@@ -1,8 +1,8 @@
1
1
  import { Command } from 'commander';
2
- import { prompt } from 'enquirer';
2
+ import { execSync } from 'node:child_process';
3
3
  import { mkdirSync, writeFileSync, existsSync } from 'node:fs';
4
4
  import { join } from 'node:path';
5
- import { execSync } from 'node:child_process';
5
+ import { prompt } from 'enquirer';
6
6
 
7
7
  // src/index.ts
8
8
  var Validator = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-faas-app",
3
- "version": "3.7.0-beta.2",
3
+ "version": "3.7.0-beta.4",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",