-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added @useweb/starter-webapp-code-gen-templates
- Loading branch information
1 parent
000747d
commit 3616fad
Showing
24 changed files
with
73 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "@useweb/starter-webapp-code-gen-templates", | ||
"version": "1.0.0", | ||
"type": "module", | ||
"main": "superCodeGen.schema.cjs", | ||
"scripts": { | ||
"deploy": "npm publish --access public" | ||
} | ||
} |
48 changes: 48 additions & 0 deletions
48
devtools/codeGenerator/packageTemplates/superCodeGen.schema.cjs
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,48 @@ | ||
// templates for the `Super Code Generator` vscode plugin | ||
// https://marketplace.visualstudio.com/items?itemName=tenjojeremy.super-code-generator | ||
|
||
const component = require("./templates/component.cjs"); | ||
const componentStory = require("./templates/componentStory.cjs"); | ||
const componentWithStory = require("./templates/componentWithStory.cjs"); | ||
const functions = require("./templates/function.cjs"); | ||
const functionStory = require("./templates/functionStory.cjs"); | ||
const functionWithStory = require("./templates/functionWithStory.cjs"); | ||
const container = require("./templates/container.cjs"); | ||
const page = require("./templates/page.cjs"); | ||
const globalState = require("./templates/globalState.cjs"); | ||
const asyncHook = require("./templates/asyncHook.cjs"); | ||
const cloudFunction = require("./templates/cloudFunction.cjs"); | ||
const muiOverride = require("./templates/muiOverride.cjs"); | ||
const muiOverrideWithStory = require("./templates/muiOverrideWithStory.cjs"); | ||
const playwrightTest = require("./templates/playwrightTest.cjs"); | ||
const data = require("./templates/data.cjs"); | ||
const vitestTest = require("./templates/vitestTest.cjs"); | ||
const script = require("./templates/script.cjs"); | ||
|
||
module.exports = [ | ||
container.template, | ||
|
||
component.template, | ||
componentStory.template, | ||
componentWithStory.template, | ||
|
||
functions.template, | ||
functionStory.template, | ||
functionWithStory.template, | ||
|
||
cloudFunction.template, | ||
|
||
data.template, | ||
globalState.template, | ||
|
||
playwrightTest.template, | ||
vitestTest.template, | ||
|
||
page.template, | ||
|
||
muiOverride.template, | ||
muiOverrideWithStory.template, | ||
|
||
asyncHook.template, | ||
script.template, | ||
]; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,48 +1,6 @@ | ||
// templates for the `Super Code Generator` vscode plugin | ||
// https://marketplace.visualstudio.com/items?itemName=tenjojeremy.super-code-generator | ||
|
||
const component = require("./templates/component.cjs"); | ||
const componentStory = require("./templates/componentStory.cjs"); | ||
const componentWithStory = require("./templates/componentWithStory.cjs"); | ||
const functions = require("./templates/function.cjs"); | ||
const functionStory = require("./templates/functionStory.cjs"); | ||
const functionWithStory = require("./templates/functionWithStory.cjs"); | ||
const container = require("./templates/container.cjs"); | ||
const page = require("./templates/page.cjs"); | ||
const globalState = require("./templates/globalState.cjs"); | ||
const asyncHook = require("./templates/asyncHook.cjs"); | ||
const cloudFunction = require("./templates/cloudFunction.cjs"); | ||
const muiOverride = require("./templates/muiOverride.cjs"); | ||
const muiOverrideWithStory = require("./templates/muiOverrideWithStory.cjs"); | ||
const playwrightTest = require("./templates/playwrightTest.cjs"); | ||
const data = require("./templates/data.cjs"); | ||
const vitestTest = require("./templates/vitestTest.cjs"); | ||
const script = require("./templates/script.cjs"); | ||
const webappCodeGenTemaplates = require('@useweb/starter-webapp-code-gen-templates/superCodeGen.schema.cjs') | ||
|
||
module.exports = [ | ||
container.template, | ||
|
||
component.template, | ||
componentStory.template, | ||
componentWithStory.template, | ||
|
||
functions.template, | ||
functionStory.template, | ||
functionWithStory.template, | ||
|
||
cloudFunction.template, | ||
|
||
data.template, | ||
globalState.template, | ||
|
||
playwrightTest.template, | ||
vitestTest.template, | ||
|
||
page.template, | ||
|
||
muiOverride.template, | ||
muiOverrideWithStory.template, | ||
|
||
asyncHook.template, | ||
script.template, | ||
]; | ||
module.exports = [...webappCodeGenTemaplates] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
3616fad
There was a problem hiding this comment.
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:
starter-webapp – ./
starter-webapp-jeremytenjo.vercel.app
starter-webapp.vercel.app
starter-webapp-git-main-jeremytenjo.vercel.app