Skip to content

Commit

Permalink
Merge pull request #54 from embroider-build/fix-semver
Browse files Browse the repository at this point in the history
fix import of semver
  • Loading branch information
mansona committed Feb 14, 2024
2 parents 06a2294 + e9de241 commit 29962ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/plan.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import type { Impact, ParsedChangelog } from './change-parser.js';
import { publishedInterPackageDeps } from './interdep.js';
import { assertNever } from 'assert-never';
import { inc, satisfies } from 'semver';
import semver from 'semver';
import { highlightMarkdown } from './highlight.js';
import chalk from 'chalk';
import { resolve } from 'path';
import fsExtra from 'fs-extra';

const { inc, satisfies } = semver;

const { existsSync, readJSONSync, writeJSONSync } = fsExtra;

export type Solution = Map<
Expand Down

0 comments on commit 29962ca

Please sign in to comment.