Skip to content
This repository has been archived by the owner on Dec 22, 2022. It is now read-only.

Commit

Permalink
feat: changed install path
Browse files Browse the repository at this point in the history
  • Loading branch information
prisis committed Jun 9, 2021
1 parent 324fb6b commit c097f18
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import path from "path"
import pkg from "./package.json";

export default RecipeBuilder()
.setName("Tailwind UI")
.setName("Swagger Recipe")
.setOwner(pkg.author)
.setRepoLink(pkg.repository.url)
.addAddDependenciesStep({
Expand All @@ -22,15 +22,15 @@ export default RecipeBuilder()
stepId: "addIntegrations",
stepName: "Add Swagger helper files",
explanation: `Helper to create spec based on swagger-jsdoc`,
targetDirectory: ".",
targetDirectory: "./integrations",
templatePath: path.join(__dirname, "templates", "integrations"),
templateValues: {},
})
.addNewFilesStep({
stepId: "addSwaggerPage",
stepName: "Add Swagger page file",
explanation: `Helper to create spec based on swagger-jsdoc`,
targetDirectory: ".",
targetDirectory: "./app/pages",
templatePath: path.join(__dirname, "templates", "pages"),
templateValues: {},
})
Expand Down

0 comments on commit c097f18

Please sign in to comment.