Skip to content

Commit

Permalink
fix: make dependencies with tolerant flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Feb 3, 2024
1 parent 0c7c54d commit fe0f1ba
Show file tree
Hide file tree
Showing 9 changed files with 97 additions and 131 deletions.
2 changes: 1 addition & 1 deletion packages/monorepo/bin/monorepo-build.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env node
const commander = require("commander");
const {commander} = require("commander");

commander
.usage("monorepo build [options]")
Expand Down
2 changes: 1 addition & 1 deletion packages/monorepo/bin/monorepo-ci.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env node
const commander = require("commander");
const {commander} = require("commander");

commander
.usage("monorepo ci <type> [options]")
Expand Down
2 changes: 1 addition & 1 deletion packages/monorepo/bin/monorepo-clean.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env node
const commander = require("commander");
const {commander} = require("commander");

commander
.usage("monorepo clean <type> [options]")
Expand Down
2 changes: 1 addition & 1 deletion packages/monorepo/bin/monorepo-publish.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env node
const commander = require("commander");
const {commander} = require("commander");

commander
.usage("monorepo publish <type> [options]")
Expand Down
2 changes: 1 addition & 1 deletion packages/monorepo/bin/monorepo-sync.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env node
const commander = require("commander");
const {commander} = require("commander");

commander
.usage("monorepo sync <type> [options]")
Expand Down
2 changes: 1 addition & 1 deletion packages/monorepo/bin/monorepo-version.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env node
const commander = require("commander");
const {commander} = require("commander");

commander
.usage("monorepo version <version>")
Expand Down
2 changes: 1 addition & 1 deletion packages/monorepo/bin/monorepo.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node

const commander = require("commander");
const {commander} = require("commander");
const cliPkg = require("../package.json");

commander
Expand Down
47 changes: 23 additions & 24 deletions packages/monorepo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,30 +27,29 @@
"bin": "./bin"
},
"dependencies": {
"@samverschueren/stream-to-observable": "0.3.1",
"@typescript-eslint/typescript-estree": "6.20.0",
"any-observable": "0.5.1",
"axios": "1.6.7",
"chalk": "5.3.0",
"commander": "11.1.0",
"execa": "8.0.1",
"fancy-log": "1.3.3",
"figures": "3.2.0",
"fs-extra": "11.2.0",
"globby": "14.0.0",
"has-yarn": "3.0.0",
"inquirer": "9.2.13",
"jsonfile": "^6.1.0",
"listr2": "8.0.2",
"lodash": "4.17.21",
"normalize-path": "3.0.0",
"rxjs": "7.8.1",
"semver": "7.5.4",
"split": "1.0.1",
"typescript": "5.3.3"
"@samverschueren/stream-to-observable": ">=0.3.1",
"@typescript-eslint/typescript-estree": ">=6.20.0",
"any-observable": ">=0.5.1",
"axios": ">=1.6.7",
"chalk": ">=5.3.0",
"commander": ">=12.0.0",
"execa": ">=8.0.1",
"fancy-log": ">=1.3.3",
"figures": ">=3.2.0",
"fs-extra": ">=11.2.0",
"globby": ">=14.0.0",
"has-yarn": ">=3.0.0",
"inquirer": ">=9.2.13",
"jsonfile": ">=6.1.0",
"listr2": ">=8.0.2",
"lodash": ">=4.17.21",
"normalize-path": ">=3.0.0",
"rxjs": ">=7.8.1",
"semver": ">=7.5.4",
"split": ">=1.0.1",
"typescript": ">=5.3.3"
},
"peerDependencies": {
"semantic-release": ">=19"
},
"devDependencies": {}
}
}
}
Loading

0 comments on commit fe0f1ba

Please sign in to comment.