@botonic/create-workspace 2.31.1-alpha.2 → 2.31.1-alpha.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.
@@ -8,8 +8,10 @@ const { hideBin } = require('yargs/helpers')
8
8
  const ownPkg = require(path.join(__dirname, '..', 'package.json'))
9
9
  const ownVersion = ownPkg.version
10
10
  const createNxWorkspaceVersion = (
11
- ownPkg.dependencies?.['create-nx-workspace'] || '21.0.3'
12
- ).replace(/^[\^~]/, '')
11
+ ownPkg.dependencies?.['create-nx-workspace'] || '21'
12
+ )
13
+ .replace(/^[\^~]/, '')
14
+ .split('.')[0]
13
15
 
14
16
  const argv = yargs(hideBin(process.argv))
15
17
  .usage('Usage: $0 <workspace-name> [options]')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botonic/create-workspace",
3
- "version": "2.31.1-alpha.2",
3
+ "version": "2.31.1-alpha.4",
4
4
  "description": "Create a new workspace for Botonic bot development",
5
5
  "main": "index.js",
6
6
  "bin": {