Skip to content

Commit

Permalink
refactor: move release executors to their own folder
Browse files Browse the repository at this point in the history
  • Loading branch information
goetzrobin committed Jul 20, 2023
1 parent 2fd9d82 commit 822594c
Show file tree
Hide file tree
Showing 15 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions libs/nx/executors.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"executors": {
"npm-publish": {
"implementation": "./src/executors/npm-publish/executor",
"schema": "./src/executors/npm-publish/schema.json",
"implementation": "./src/executors/release/npm-publish/executor",
"schema": "./src/executors/release/npm-publish/schema.json",
"description": "npm-publish executor"
},
"update-version": {
"implementation": "./src/executors/update-version/executor",
"schema": "./src/executors/update-version/schema.json",
"implementation": "./src/executors/release/update-version/executor",
"schema": "./src/executors/release/update-version/schema.json",
"description": "update-version executor"
},
"build-update-publish": {
"implementation": "./src/executors/build-update-publish/executor",
"schema": "./src/executors/build-update-publish/schema.json",
"implementation": "./src/executors/release/build-update-publish/executor",
"schema": "./src/executors/release/build-update-publish/schema.json",
"description": "build-update-publish executor"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default async function runExecutor(options: NpmPublishExecutorSchema, con
execSync(
`cd ${sourceRoot} && echo '//registry.npmjs.org/:_authToken=${process.env.NPM_TOKEN}' > .npmrc && npm publish`
);
await sleep(5000);
await sleep(3000);
return {
success: true,
};
Expand Down

1 comment on commit 822594c

@vercel
Copy link

@vercel vercel bot commented on 822594c Jul 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

spartan – ./

spartan-goetzrobin.vercel.app
spartan.ng
www.spartan.ng
spartan-git-main-goetzrobin.vercel.app

Please sign in to comment.