Skip to content

Commit

Permalink
hardcode version number for dependency (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimWallaceDev authored Jul 20, 2024
1 parent f8301ef commit 354e1d3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/cli/make.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ import {
import {
SingleBar,
} from 'cli-progress';
import pkg from '../../package.json' with {
type: 'json'
};

export default (args: string[], cwd: string,) => {
const name = (args[FIRST_ARGUMENT] || 'benchmark')
Expand Down Expand Up @@ -70,7 +67,7 @@ export default (args: string[], cwd: string,) => {
private: true,
type: 'module',
dependencies: {
'@idrinth-api-bench/framework': '^' + pkg.version,
'@idrinth-api-bench/framework': '^1.0.5',
},
devDependencies: {
typescript: '^5.3.3',
Expand Down

0 comments on commit 354e1d3

Please sign in to comment.