Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: bump core, sf-plugins-core, oclif #215

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 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/core', '^5.2.0'],
['@salesforce/sf-plugins-core', '^4.0.0'],
['@salesforce/core', '^5.3.5'],
['@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