Skip to content

Commit

Permalink
do not prcesses concurrently
Browse files Browse the repository at this point in the history
  • Loading branch information
mkusaka committed Apr 30, 2022
1 parent 3ad5ed4 commit da07786
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ commands:
cancel_redundant_workflow:
steps:
- run:
name: run long sleep
name: install cli
command: |
bash <(curl https://raw.githubusercontent.com/mkusaka/circli/main/scripts/install.bash)
./circli --verison
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "circli",
"version": "0.0.1",
"version": "0.0.2",
"main": "index.js",
"repository": "https://github.com/mkusaka/circli.git",
"author": "mkusaka <[email protected]>",
Expand All @@ -17,17 +17,17 @@
"typescript": "^4.6.4"
},
"scripts": {
"update": "concurrently \"npm:update:*\" && prettier --write './**/*.{json,ts}' && yarn gen && yarn transform",
"update": "concurrently -m 1 \"npm:update:*\" && prettier --write './**/*.{json,ts}' && yarn gen && yarn transform",
"update:swagger": "curl -o swagger.json https://circleci.com/api/v2/openapi.json",
"gen": "openapi -i swagger.json -o client --useOptions --useUnionTypes --indent 2",
"run": "deno run -A main.ts",
"transform": "ncc run transform.ts",
"fmt": "prettier --write transform.ts",
"compile": "concurrently \"npm:compile:*\"",
"compile": "concurrently -m 1 \"npm:compile:*\"",
"compile:linux": "deno compile --target x86_64-unknown-linux-gnu -o dist/linux/circli main.ts",
"compile:Mac:amd64": "deno compile --target x86_64-apple-darwin -o dist/macamd/circli main.ts",
"compile:Mac:arm64": "deno compile --target aarch64-apple-darwin -o dist/macarm/cicli main.ts",
"package": "yarn compile && concurrently \"npm:package:*\"",
"package": "yarn compile && concurrently -m 1 \"npm:package:*\"",
"package:linux": "cp README.md dist/linux/ && cp LICENSE dist/linux/ && tar cvzf circli_linux_x86_64.tar.gz --warning=no-file-changed ./dist/linux",
"package:Mac:amd64": "cp README.md dist/macamd/ && cp LICENSE dist/macamd/ && tar cvzf circli_Darwin_x86_64.tar.gz --warning=no-file-changed ./dist/linux",
"package:Mac:arm64": "cp README.md dist/macarm/ && cp LICENSE dist/macarm/ && tar cvzf circli_Darwin_arm64.tar.gz --warning=no-file-changed ./dist/linux",
Expand Down

0 comments on commit da07786

Please sign in to comment.