Skip to content

Commit

Permalink
fix: remove all requires
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Nov 14, 2023
1 parent e4bc755 commit 63c8b2b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/generators/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { pascalCase } from 'change-case';
import { set } from '@salesforce/kit';
import { get } from '@salesforce/ts-types';
import shelljs from 'shelljs';
import defaultsDeep = require('lodash.defaultsdeep');
import defaultsDeep from 'lodash.defaultsdeep';
import { PackageJson, Topic } from '../types.js';

export interface CommandGeneratorOptions extends Generator.GeneratorOptions {
Expand Down
2 changes: 1 addition & 1 deletion src/generators/library.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import path from 'node:path';
import { fileURLToPath } from 'node:url';
import Generator from 'yeoman-generator';
import shelljs from 'shelljs';
import replace = require('replace-in-file');
import replace from 'replace-in-file';
import { PackageJson } from '../types.js';
import { readJson } from '../util.js';

Expand Down
2 changes: 1 addition & 1 deletion src/generators/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import path from 'node:path';
import { fileURLToPath } from 'node:url';
import Generator from 'yeoman-generator';
import shelljs from 'shelljs';
import replace = require('replace-in-file');
import replace from 'replace-in-file';
import { Messages } from '@salesforce/core';
import { NYC, PackageJson } from '../types.js';
import { readJson, validatePluginName } from '../util.js';
Expand Down

0 comments on commit 63c8b2b

Please sign in to comment.