Skip to content

Commit

Permalink
Fix semver imports
Browse files Browse the repository at this point in the history
  • Loading branch information
job13er committed Sep 27, 2023
1 parent c2b95ee commit 55aa577
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bumpr.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import fetch from 'node-fetch'
import path from 'path'
import Promise from 'promise'
import replace from 'replace-in-file'
import semverInc from 'semver/functions/inc'
import semverPrerelease from 'semver/functions/prerelease'
import semverInc from 'semver/functions/inc.js'
import semverPrerelease from 'semver/functions/prerelease.js'
import {readFileSync, writeFileSync} from 'fs'
import pkgJson from '../package.json' assert {type: 'json'}
import {createReadStream, exec, existsSync, readdir, statSync, writeFile} from './node-wrappers.js'
Expand Down

0 comments on commit 55aa577

Please sign in to comment.