-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add UI Download Template for authDefault theme * Refactor file and folder creation logic in defineDownload function * Add dependencies and implement file scanning * Fix file name bug in defineDownload function * Add tempOutput option to DefineDownloadOptions * version(cli): release 0.3.11 * version(nuxt): release 0.5.0-beta.20 * Update Pergel configuration and template paths * Update Pergel auto-generated files * version(nuxt): release 0.5.0-beta.21 * Update pergel version and add auth middleware * Add createdAt, updatedAt, and username fields to seed1 function * Add @pergel/nuxt as a dependency and configure pergel projects * Add projectName option to download command * Add new directories and update UI download command in README.yaml * version(cli): release 0.3.12 * version(nuxt): release 0.5.0-beta.22 * Add new file write operation and replace operations in defineDownload function * version(cli): release 0.3.13 * Update Pergel theme with new options * Refactor defineDownload function in core.ts * version(cli): release 0.3.14 * Fix variable assignment and string replacement in core.ts * version(cli): release 0.3.15 * Refactor file and folder name replacements in core.ts * version(cli): release 0.3.16 * version(cli): release 0.3.17 * version(cli): release 0.3.18 * Fix variable name replacements in defineDownload function * Update package.json and README.yaml * Update package.json, templates.json, and core.ts * Add resolution for @pergel/nuxt package * fix: lint issues
- Loading branch information
1 parent
616a830
commit 61237b8
Showing
46 changed files
with
1,126 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
{ | ||
"version": "0.1.0", | ||
"templates": { | ||
"default-auth-1": { | ||
"version": "0.0.1", | ||
"branch": "main", | ||
"file": { | ||
"dir": "themes/pergel-auth", | ||
"path": [ | ||
{ | ||
"fileName": "app.vue", | ||
"outputFileName": "app.vue", | ||
"forceClean": true | ||
}, | ||
{ | ||
"fileName": "pages/index.vue", | ||
"outputFileName": "pages/index.vue" | ||
}, | ||
{ | ||
"fileName": "assets/pergel.css", | ||
"outputFileName": "assets/pergel.css" | ||
} | ||
] | ||
}, | ||
"folder": [ | ||
{ | ||
"dir": "themes/pergel-auth/pages/auth", | ||
"output": "pages/auth", | ||
"forceClean": true | ||
}, | ||
{ | ||
"dir": "themes/pergel-auth/components", | ||
"output": "components", | ||
"forceClean": true | ||
}, | ||
{ | ||
"dir": "themes/pergel-auth/layouts", | ||
"output": "layouts", | ||
"forceClean": true | ||
}, | ||
{ | ||
"dir": "themes/pergel-auth/middleware", | ||
"output": "middleware", | ||
"forceClean": true | ||
}, | ||
{ | ||
"dir": "themes/pergel-auth/composables", | ||
"output": "composables", | ||
"forceClean": true | ||
}, | ||
{ | ||
"dir": "themes/pergel-auth/server/api/auth", | ||
"output": "server/api/auth", | ||
"forceClean": true | ||
}, | ||
{ | ||
"dir": "themes/pergel-auth/server/middleware", | ||
"output": "server/middleware", | ||
"forceClean": true | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.