Skip to content

Commit

Permalink
Bump dependencies versions
Browse files Browse the repository at this point in the history
  • Loading branch information
FabienTaillon committed Mar 11, 2024
1 parent 4c1184a commit a11d050
Show file tree
Hide file tree
Showing 19 changed files with 7,636 additions and 4,670 deletions.
6,113 changes: 3,798 additions & 2,315 deletions oclif.lock

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "texei-sfdx-plugin",
"description": "Texeï's plugin for sfdx",
"version": "2.3.0",
"version": "2.3.1",
"author": "Texeï",
"bugs": "https://github.com/texei/texei-sfdx-plugin/issues",
"dependencies": {
Expand Down Expand Up @@ -38,27 +38,27 @@
"@swc/core": "^1.3.35",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"chai": "^4.3.7",
"eslint": "^8.44.0",
"chai": "^4.3.10",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-salesforce": "^2.0.1",
"eslint-config-salesforce-license": "^0.2.0",
"eslint-config-salesforce-typescript": "^1.1.1",
"eslint-config-salesforce-typescript": "^2.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^43.0.5",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-sf-plugin": "^1.15.6",
"husky": "^7.0.4",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"oclif": "^3.14.0",
"oclif": "^4.5.2",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"shx": "0.3.4",
"sinon": "^11.1.2",
"ts-node": "^10.8.1",
"typescript": "^4.9.5",
"wireit": "^0.9.5"
"typescript": "^5.2.2",
"wireit": "^0.14.1"
},
"config": {},
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions src/commands/texei/cpqsettings/set.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable no-await-in-loop */
/* eslint-disable @typescript-eslint/explicit-function-return-type */
import * as path from 'path';
import { promises as fs } from 'fs';
import * as path from 'node:path';
import { promises as fs } from 'node:fs';
import {
SfCommand,
Flags,
Expand Down
4 changes: 2 additions & 2 deletions src/commands/texei/data/export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
/* eslint-disable @typescript-eslint/explicit-function-return-type */
/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
import * as fs from 'fs';
import * as path from 'path';
import * as fs from 'node:fs';
import * as path from 'node:path';
import csv = require('csvtojson');
import {
SfCommand,
Expand Down
4 changes: 2 additions & 2 deletions src/commands/texei/data/import.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
/* eslint-disable @typescript-eslint/explicit-function-return-type */
/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
import * as fs from 'fs';
import * as path from 'path';
import * as fs from 'node:fs';
import * as path from 'node:path';
import util = require('util');
import {
SfCommand,
Expand Down
4 changes: 2 additions & 2 deletions src/commands/texei/data/plan/generate.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { promises as fs } from 'fs';
import * as path from 'path';
import { promises as fs } from 'node:fs';
import * as path from 'node:path';
import { SfCommand, Flags } from '@salesforce/sf-plugins-core';
import { Messages, SfError } from '@salesforce/core';

Expand Down
4 changes: 2 additions & 2 deletions src/commands/texei/org/shape/extract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable @typescript-eslint/explicit-function-return-type */
/* eslint-disable @typescript-eslint/no-explicit-any */
import * as path from 'path';
import * as fs from 'fs';
import * as path from 'node:path';
import * as fs from 'node:fs';
import {
SfCommand,
Flags,
Expand Down
4 changes: 2 additions & 2 deletions src/commands/texei/picklist/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
/* eslint-disable class-methods-use-this */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable no-await-in-loop */
import { promises as fs } from 'fs';
import * as path from 'path';
import { promises as fs } from 'node:fs';
import * as path from 'node:path';
import { SfCommand, Flags, loglevel } from '@salesforce/sf-plugins-core';
import { Messages } from '@salesforce/core';
import { AnyJson } from '@salesforce/ts-types';
Expand Down
4 changes: 2 additions & 2 deletions src/commands/texei/picklist/restrict.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
/* eslint-disable no-await-in-loop */
/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
import * as fs from 'fs';
import * as path from 'path';
import * as fs from 'node:fs';
import * as path from 'node:path';
import {
SfCommand,
Flags,
Expand Down
4 changes: 2 additions & 2 deletions src/commands/texei/picklist/unrestrict.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
import util = require('util');
import * as path from 'path';
import * as fs from 'fs';
import * as path from 'node:path';
import * as fs from 'node:fs';
import {
SfCommand,
Flags,
Expand Down
4 changes: 2 additions & 2 deletions src/commands/texei/profile/clean.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
/* eslint-disable no-await-in-loop */
/* eslint-disable @typescript-eslint/explicit-function-return-type */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
import * as fs from 'fs';
import * as path from 'path';
import * as fs from 'node:fs';
import * as path from 'node:path';
import util = require('util');
import { SfCommand, Flags, loglevel } from '@salesforce/sf-plugins-core';
import { Messages, SfError } from '@salesforce/core';
Expand Down
4 changes: 2 additions & 2 deletions src/commands/texei/skinnyprofile/check.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as fs from 'fs';
import * as path from 'path';
import * as fs from 'node:fs';
import * as path from 'node:path';
import xml2js = require('xml2js');
import { SfCommand, Flags, loglevel } from '@salesforce/sf-plugins-core';
import { Messages, SfError } from '@salesforce/core';
Expand Down
4 changes: 2 additions & 2 deletions src/commands/texei/skinnyprofile/create.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as fs from 'fs';
import * as path from 'path';
import * as fs from 'node:fs';
import * as path from 'node:path';
import { SfCommand, Flags } from '@salesforce/sf-plugins-core';
import { Messages, SfError } from '@salesforce/core';
import { XMLParser } from 'fast-xml-parser';
Expand Down
4 changes: 2 additions & 2 deletions src/commands/texei/skinnyprofile/retrieve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
/* eslint-disable @typescript-eslint/require-await */
/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
import * as path from 'path';
import * as fs from 'fs';
import * as path from 'node:path';
import * as fs from 'node:fs';
import xml2js = require('xml2js');
import unzipper = require('unzipper');
import {
Expand Down
4 changes: 2 additions & 2 deletions src/commands/texei/source/customlabel/replace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
/* eslint-disable @typescript-eslint/restrict-template-expressions */
/* eslint-disable @typescript-eslint/no-unsafe-argument */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
import * as path from 'path';
import * as path from 'node:path';
import util = require('util');
import * as fs from 'fs';
import * as fs from 'node:fs';
import { SfCommand, Flags, loglevel } from '@salesforce/sf-plugins-core';
import { Messages, SfError } from '@salesforce/core';
import xml2js = require('xml2js');
Expand Down
4 changes: 2 additions & 2 deletions src/commands/texei/source/layouts/cleanorg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
/* eslint-disable @typescript-eslint/restrict-template-expressions */
/* eslint-disable @typescript-eslint/no-unsafe-argument */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
import * as fs from 'fs';
import * as fs from 'node:fs';
import util = require('util');
import * as path from 'path';
import * as path from 'node:path';
import {
SfCommand,
Flags,
Expand Down
4 changes: 2 additions & 2 deletions src/shared/sfdxProjectFolder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// TODO: Do more generic functions, better suffid handling, test folder exists everywhere
// Also maybe some attribute to ask for just name, file name, full name for retrieve
// ex. for record type: MyRecordTypeForAccount, MyRecordTypeForAccount.recordType-meta.xml, Account.MyRecordTypeForAccount
import * as path from 'path';
import * as fs from 'fs';
import * as path from 'node:path';
import * as fs from 'node:fs';
import { NamedPackageDir, SfProject, SfProjectJson } from '@salesforce/core';
import { JsonArray, JsonMap } from '@salesforce/ts-types';
const defaultProjectFolder = 'force-app';
Expand Down
4 changes: 2 additions & 2 deletions test/commands/texei/skinnyprofile/retrieve.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as path from 'path';
import { promises as fs } from 'fs';
import * as path from 'node:path';
import { promises as fs } from 'node:fs';
import { Config, expect } from '@salesforce/command/lib/test';
import Retrieve from '../../../../src/commands/texei/skinnyprofile/retrieve';
import { permissionSetNodes } from '../../../../src/shared/skinnyProfileHelper';
Expand Down
Loading

0 comments on commit a11d050

Please sign in to comment.