Skip to content

Commit

Permalink
feat: bump core, sf-plugins-core, oclif
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Oct 6, 2023
1 parent 1784d12 commit fa13961
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/write-dependencies.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ const { resolveConfig } = require('./sf-config');
* But, if the target repo has the dep, we want to make sure it meets the minimum version.
*/
const nonPjsonDependencyMinimums = new Map([
['@salesforce/sf-plugins-core', '^3.1.20'],
['@salesforce/sf-plugins-core', '^4.0.0'],
['@salesforce/core', '^5.2.0'],
['@salesforce/kit', '^3.0.9'],
['@salesforce/ts-types', '^2.0.6'],
['@oclif/core', '^2.15.0'],
['@oclif/core', '^3.0.3'],
['@salesforce/cli-plugins-testkit', '^4.2.9'],
['@salesforce/source-deploy-retrieve', '^9.7.2'],
['@salesforce/source-tracking', '^4.2.10'],
['@salesforce/plugin-command-reference', '^3.0.25'],
['@oclif/plugin-command-snapshot', '^4.0.2'],
['eslint-plugin-sf-plugin', '^1.15.6'],
['oclif', '^3.16.0'],
['oclif', '^4.0.0'],
]);

const getVersionNum = (ver) => (ver.startsWith('^') || ver.startsWith('~') ? ver.slice(1) : ver);
Expand Down

0 comments on commit fa13961

Please sign in to comment.