refactor: move templates folder

This commit is contained in:
Huakun Shen 2024-11-15 18:28:57 -05:00
parent 5ead38bf71
commit e812d4229d
No known key found for this signature in database
GPG Key ID: 967DBC3ECBD63A70
151 changed files with 706 additions and 3 deletions

View File

@ -30,7 +30,7 @@ fs.emptyDirSync(tmpDistTemplatesPath)
/* -------------------------------------------------------------------------- */
console.log(getRootDir())
const templatesPath = path.join(getRootDir(), "../..", "templates")
const templatesPath = path.join(getRootDir(), "../..", "packages/templates")
fs.copySync(templatesPath, tmpDistTemplatesPath, { dereference: os.platform() === "win32" })
/* -------------------------------------------------------------------------- */

View File

@ -6,7 +6,7 @@ import chalk from "chalk"
import { Command, Option } from "commander"
import fs from "fs-extra"
import pkgJson from "./package.json"
import { createKunkunVersion, getTemplateRoot, isProduction } from "./src/constants"
import { createKunkunVersion, getTemplateRoot, isProduction, NODE_ENV } from "./src/constants"
import { cleanExtension, patchHBS, patchManifestJsonSchema, patchPkgJsonDep } from "./src/patch"
import { getLatestNpmPkgVersion, tarExtract } from "./src/utils"
@ -64,7 +64,7 @@ if (!fs.existsSync(outdir)) {
async function copyTemplate(templateTgz: string, targetFolderName: string): Promise<string> {
const destDir = path.join(outdir, targetFolderName)
if (!fs.existsSync(templateTgz)) {
console.error(`Worker Extension Template not found at ${templateTgz}`)
process.exit(1)

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 629 B

After

Width:  |  Height:  |  Size: 629 B

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,23 @@
node_modules
# Output
.output
.vercel
/.svelte-kit
/build
# OS
.DS_Store
Thumbs.db
# Env
.env
.env.*
!.env.example
!.env.test
# Vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
extensions_support/

View File

@ -0,0 +1 @@
engine-strict=true

View File

@ -0,0 +1,4 @@
# Package Managers
package-lock.json
pnpm-lock.yaml
yarn.lock

Some files were not shown because too many files have changed in this diff Show More