Skip to content

Commit

Permalink
fix(js): move swc/helpers to dependencies instead of devDependencies (#…
Browse files Browse the repository at this point in the history
…10275)

ISSUES CLOSED: #10270
  • Loading branch information
nartc committed May 12, 2022
1 parent 1004038 commit 692418d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/js/src/utils/swc/add-swc-dependencies.ts
Expand Up @@ -4,10 +4,11 @@ import { swcCliVersion, swcCoreVersion, swcHelpersVersion } from '../versions';
export function addSwcDependencies(tree: Tree) {
addDependenciesToPackageJson(
tree,
{},
{
'@swc/core': swcCoreVersion,
'@swc/helpers': swcHelpersVersion,
},
{
'@swc/core': swcCoreVersion,
'@swc/cli': swcCliVersion,
}
);
Expand Down

0 comments on commit 692418d

Please sign in to comment.