refactor: move templates folder
@ -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" })
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
|
@ -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)
|
||||
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 629 B After Width: | Height: | Size: 629 B |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
23
packages/templates/template-ext-sveltekit/.gitignore
vendored
Normal 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/
|
||||
|
1
packages/templates/template-ext-sveltekit/.npmrc
Normal file
@ -0,0 +1 @@
|
||||
engine-strict=true
|
@ -0,0 +1,4 @@
|
||||
# Package Managers
|
||||
package-lock.json
|
||||
pnpm-lock.yaml
|
||||
yarn.lock
|