Skip to content

Commit

Permalink
fix: setVersion + warning on stdinout listeners
Browse files Browse the repository at this point in the history
  • Loading branch information
quentinderoubaix committed Dec 12, 2023
1 parent 4e1fe9f commit b506936
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion react/lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build": "node ../../scripts/rm.js dist && tsc && node ../../scripts/buildPackageJson.js . dist"
},
"dependencies": {
"@agnos-ui/react-headless": "*",
"@agnos-ui/react-headless": "",
"@agnos-ui/style-bootstrap": "",
"@amadeus-it-group/tansu": "0.0.24",
"classnames": "^2.3.2"
Expand Down
3 changes: 3 additions & 0 deletions scripts/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ function run() {

try {
console.log('npm scripts : ', commands);
process.stdin.setMaxListeners(Infinity);
process.stderr.setMaxListeners(Infinity);
process.stdout.setMaxListeners(Infinity);
runAll(commands, {parallel, printName: true, printLabel: true, stdout: process.stdout, stderr: process.stderr, stdin: process.stdin});
} catch (e) {
console.log(e);
Expand Down

0 comments on commit b506936

Please sign in to comment.