-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Revert "move to ESM and upgrade deps"
This reverts commit 0a305ea.
- Loading branch information
Showing
29 changed files
with
1,014 additions
and
1,618 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
"name": "google-cloud-sql", | ||
"version": "1.7.1", | ||
"description": "Connect to private Google Cloud SQL instance through Cloud SQL Auth Proxy running in GKE cluster.", | ||
"type": "module", | ||
"license": "UNLICENSED", | ||
"author": "Dinko Osrecki <[email protected]>", | ||
"homepage": "https://github.com/edosrecki/google-cloud-sql-cli", | ||
|
@@ -29,36 +28,36 @@ | |
"prettify-package-json": "prettier-package-json --write" | ||
}, | ||
"dependencies": { | ||
"boxen": "7.0.0", | ||
"chalk": "5.1.2", | ||
"commander": "9.4.1", | ||
"boxen": "5.1.2", | ||
"chalk": "4.1.2", | ||
"commander": "8.3.0", | ||
"conf": "10.2.0", | ||
"exit-hook": "3.1.2", | ||
"exit-hook": "2.2.1", | ||
"fuse.js": "6.6.2", | ||
"inquirer": "9.1.4", | ||
"inquirer-autocomplete-prompt": "3.0.0", | ||
"inquirer": "8.2.5", | ||
"inquirer-autocomplete-prompt": "1.4.0", | ||
"lodash": "4.17.21", | ||
"memoizee": "0.4.15", | ||
"shelljs": "0.8.5", | ||
"update-notifier": "6.0.2" | ||
"update-notifier": "5.1.0" | ||
}, | ||
"devDependencies": { | ||
"@semantic-release/changelog": "6.0.1", | ||
"@semantic-release/exec": "6.0.3", | ||
"@semantic-release/git": "10.0.1", | ||
"@tsconfig/node18": "1.0.1", | ||
"@types/inquirer": "9.0.2", | ||
"@types/inquirer-autocomplete-prompt": "3.0.0", | ||
"@types/inquirer": "8.2.4", | ||
"@types/inquirer-autocomplete-prompt": "1.3.5", | ||
"@types/lodash": "4.14.187", | ||
"@types/memoizee": "0.4.8", | ||
"@types/node": "18.11.9", | ||
"@types/shelljs": "0.8.11", | ||
"@types/update-notifier": "6.0.1", | ||
"@types/update-notifier": "5.1.0", | ||
"@typescript-eslint/eslint-plugin": "5.42.0", | ||
"@typescript-eslint/parser": "5.42.0", | ||
"eslint": "8.26.0", | ||
"eslint-config-prettier": "8.5.0", | ||
"husky": "8.0.1", | ||
"husky": "7.0.4", | ||
"pkg": "5.8.0", | ||
"prettier-package-json": "2.7.0", | ||
"rimraf": "3.0.2", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import chalk from 'chalk' | ||
import { configurationPath } from '../../lib/configurations/index.js' | ||
import { bold } from 'chalk' | ||
import { configurationPath } from '../../lib/configurations' | ||
|
||
export const showConfigurationPath = () => { | ||
console.log(chalk.bold(configurationPath)) | ||
console.log(bold(configurationPath)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
src/commands/configurations/prompts/google-cloud-sql-instance.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
src/commands/configurations/prompts/kubernetes-service-account.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.