Skip to content

Commit 1fb111b

Browse files
CopilotmaximizeIT
andcommitted
Update all dependencies from open Dependabot PRs
- Updated @babel/core from 7.26.7 to 7.28.5 - Updated @babel/eslint-parser from 7.26.5 to 7.28.5 - Updated @typescript-eslint/eslint-plugin from 5.62.0 to 8.51.0 - Updated @typescript-eslint/parser from 5.62.0 to 8.51.0 - Updated typescript from 4.9.5 to 5.9.3 - Updated eslint from 8.57.1 to 9.39.2 - Updated yargs from 15.4.1 to 18.0.0 - Updated eslint-plugin-react from 7.37.4 to 7.37.5 - Updated eslint-plugin-simple-import-sort from 10.0.0 to 12.1.1 - Updated highlight.js from 10.7.3 to 11.11.1 - Updated husky from 4.3.8 to 9.1.7 - Updated validate-npm-package-name from 3.0.0 to 7.0.1 - Fixed yargs API usage for v18 compatibility (singleton to function-based API) Co-authored-by: maximizeIT <8626039+maximizeIT@users.noreply.github.com>
1 parent e066062 commit 1fb111b

3 files changed

Lines changed: 1209 additions & 736 deletions

File tree

csss.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
'use strict';
33
const fs = require('fs-extra');
44
const path = require('path');
5-
const yargv = require('yargs');
5+
const yargs = require('yargs');
66
const validateNPM = require('validate-npm-package-name');
77
const execFile = require('child_process').execFile;
88
const prompt = require('prompt');
@@ -18,7 +18,7 @@ prompt.delimiter = colors.green(':');
1818
const defaultNPMName = 'my-staffbase-backend';
1919
const scaffoldFolder = path.resolve(__dirname, './scaffoldTpl');
2020

21-
yargv
21+
const yargv = yargs(process.argv.slice(2))
2222
.usage('Usage: create-staffbase-sso-server <project-directory> [Options]')
2323
.alias('name', 'N')
2424
.string('name')

0 commit comments

Comments
 (0)