create-gasket-app
Advanced tools
Comparing version 7.0.6 to 7.0.9
@@ -22,2 +22,5 @@ #!/usr/bin/env node | ||
async function main() { | ||
// Suppress deprecation warning for punycode in node 22 | ||
// @ts-ignore | ||
process.noDeprecation = true; | ||
const { command, hidden, isDefault } = processCommand(createCommand); | ||
@@ -24,0 +27,0 @@ await warnIfOutdated(pkg.name, pkg.version); |
import path from 'path'; | ||
import os from 'os'; | ||
import action from '../action-wrapper.js'; | ||
import { default as gasketUtils } from '@gasket/utils'; | ||
import { PackageManager } from '@gasket/utils'; | ||
import { mkdtemp } from 'fs/promises'; | ||
@@ -19,3 +19,3 @@ import { createRequire } from 'module'; | ||
const modPath = path.join(tmpDir, 'node_modules'); | ||
const pkgManager = new gasketUtils.PackageManager({ | ||
const pkgManager = new PackageManager({ | ||
packageManager: context.packageManager, | ||
@@ -22,0 +22,0 @@ dest: tmpDir |
import action from '../action-wrapper.js'; | ||
import { ConfigBuilder } from '../config-builder.js'; | ||
import { default as gasketUtils } from '@gasket/utils'; | ||
import { PackageManager } from '@gasket/utils'; | ||
import { createRequire } from 'module'; | ||
@@ -28,3 +28,3 @@ const require = createRequire(import.meta.url); | ||
const pkgManager = new gasketUtils.PackageManager(context); | ||
const pkgManager = new PackageManager(context); | ||
Object.assign(context, { pkg, pkgManager }); | ||
@@ -31,0 +31,0 @@ } |
{ | ||
"name": "create-gasket-app", | ||
"version": "7.0.6", | ||
"version": "7.0.9", | ||
"description": "starter pack for creating a gasket app", | ||
@@ -38,10 +38,10 @@ "type": "module", | ||
"dependencies": { | ||
"@gasket/core": "^7.0.6", | ||
"@gasket/plugin-command": "^7.0.6", | ||
"@gasket/plugin-docs": "^7.0.6", | ||
"@gasket/plugin-docusaurus": "^7.0.6", | ||
"@gasket/plugin-git": "^7.0.6", | ||
"@gasket/plugin-logger": "^7.0.6", | ||
"@gasket/plugin-metadata": "^7.0.6", | ||
"@gasket/utils": "^7.0.6", | ||
"@gasket/core": "^7.0.9", | ||
"@gasket/plugin-command": "^7.0.9", | ||
"@gasket/plugin-docs": "^7.0.9", | ||
"@gasket/plugin-docusaurus": "^7.0.9", | ||
"@gasket/plugin-git": "^7.0.9", | ||
"@gasket/plugin-logger": "^7.0.9", | ||
"@gasket/plugin-metadata": "^7.0.9", | ||
"@gasket/utils": "^7.0.9", | ||
"commander": "^12.0.0", | ||
@@ -92,3 +92,3 @@ "deepmerge": "^4.3.1", | ||
}, | ||
"gitHead": "90fec87372fb74755e92668a9158fc3c820dd37f" | ||
"gitHead": "ff3acd042a9a22cd43ac29c6b064bd2f49304b9e" | ||
} |
91699
2287
Updated@gasket/core@^7.0.9
Updated@gasket/plugin-docs@^7.0.9
Updated@gasket/plugin-git@^7.0.9
Updated@gasket/plugin-logger@^7.0.9
Updated@gasket/utils@^7.0.9