2023-12-01 16:48:30 +00:00
|
|
|
import react from '@vitejs/plugin-react'
|
2023-05-05 13:10:36 +00:00
|
|
|
import path from 'path'
|
2023-12-27 17:17:18 +00:00
|
|
|
import { PluginOption, defineConfig } from 'vite'
|
2023-05-05 13:10:36 +00:00
|
|
|
|
|
|
|
export default defineConfig({
|
2023-12-27 17:17:18 +00:00
|
|
|
plugins: [react(), exampleReadmePlugin()],
|
2023-05-05 13:10:36 +00:00
|
|
|
root: path.join(__dirname, 'src'),
|
|
|
|
publicDir: path.join(__dirname, 'public'),
|
|
|
|
build: {
|
|
|
|
outDir: path.join(__dirname, 'dist'),
|
|
|
|
assetsInlineLimit: 0,
|
|
|
|
},
|
|
|
|
server: {
|
|
|
|
port: 5420,
|
|
|
|
},
|
|
|
|
clearScreen: false,
|
2023-05-09 17:31:19 +00:00
|
|
|
optimizeDeps: {
|
|
|
|
exclude: ['@tldraw/assets'],
|
|
|
|
},
|
Feature flags rework (#1474)
This diff tweaks our `debugFlags` framework to support setting different
default value for different environments, makes it easier to define
feature flags, and makes feature flags show up in the debug menu by
default. With this change, feature flags will default to being enabled
in dev and preview environments, but disabled in production.
Specify a feature flag like this:
```ts
const featureFlags = {
myCoolNewFeature: createFeatureFlag('myCoolNewFeature')
}
```
optionally, pass a second value to control its defaults:
```ts
const featureFlags = {
featureEnabledInProduction: createFeatureFlag('someFeature', { all: true }),
customEnabled: createFeatureFlag('otherFeature', {development: true, staging: false, production: false}),
}
```
In code, the value can be read using `featureFlags.myFeature.value`.
Remember to wrap reading it in a reactive context!
### Change Type
- [x] `patch` — Bug Fix
### Test Plan
-
### Release Notes
[internal only change]
2023-05-30 13:06:15 +00:00
|
|
|
define: {
|
|
|
|
'process.env.TLDRAW_ENV': JSON.stringify(process.env.VERCEL_ENV ?? 'development'),
|
|
|
|
},
|
2023-05-05 13:10:36 +00:00
|
|
|
})
|
2023-12-27 17:17:18 +00:00
|
|
|
|
|
|
|
function exampleReadmePlugin(): PluginOption {
|
|
|
|
return {
|
|
|
|
name: 'example-readme',
|
|
|
|
async transform(src, id) {
|
|
|
|
const match = id.match(/examples\/src\/examples\/(.*)\/README.md$/)
|
|
|
|
if (!match) return
|
|
|
|
|
|
|
|
const remark = (await import('remark')).remark
|
|
|
|
const remarkFrontmatter = (await import('remark-frontmatter')).default
|
|
|
|
const remarkHtml = (await import('remark-html')).default
|
|
|
|
const matter = (await import('vfile-matter')).matter
|
|
|
|
|
|
|
|
const file = await remark()
|
|
|
|
.use(remarkFrontmatter)
|
|
|
|
.use(remarkHtml)
|
|
|
|
.use(() => (_, file) => matter(file))
|
|
|
|
.process(src)
|
|
|
|
|
|
|
|
const frontmatter = parseFrontMatter(file.data.matter, id)
|
|
|
|
|
|
|
|
const separator = '\n<hr>\n'
|
|
|
|
const parts = String(file).split(separator)
|
|
|
|
const description = parts[0]
|
|
|
|
const details = parts.slice(1).join(separator)
|
|
|
|
const path = `/${match[1]}`
|
|
|
|
const codeUrl = `https://github.com/tldraw/tldraw/tree/main/apps/examples/src/examples${path}`
|
|
|
|
|
|
|
|
const result = [
|
|
|
|
`export const title = ${JSON.stringify(frontmatter.title)};`,
|
|
|
|
`export const order = ${JSON.stringify(frontmatter.order)};`,
|
|
|
|
`export const hide = ${JSON.stringify(frontmatter.hide)};`,
|
|
|
|
`export const description = ${JSON.stringify(description)};`,
|
|
|
|
`export const details = ${JSON.stringify(details)};`,
|
|
|
|
`export const codeUrl = ${JSON.stringify(codeUrl)};`,
|
|
|
|
`export const path = ${JSON.stringify(path)};`,
|
|
|
|
`export const componentFile = ${JSON.stringify(frontmatter.component)};`,
|
|
|
|
`import {lazy} from 'react';`,
|
|
|
|
`export const loadComponent = async () => {`,
|
|
|
|
` return (await import(${JSON.stringify(frontmatter.component)})).default;`,
|
|
|
|
`};`,
|
|
|
|
]
|
|
|
|
|
|
|
|
return result.join('\n')
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function parseFrontMatter(data: unknown, fileName: string) {
|
|
|
|
if (!data || typeof data !== 'object') {
|
|
|
|
throw new Error(`Frontmatter missing in ${fileName}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!('title' in data && typeof data.title === 'string')) {
|
|
|
|
throw new Error(`Frontmatter key 'title' must be string in ${fileName}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!('component' in data && typeof data.component === 'string')) {
|
|
|
|
throw new Error(`Frontmatter key 'component' must be string in ${fileName}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
const order = 'order' in data ? data.order : null
|
|
|
|
if (order !== null && typeof order !== 'number') {
|
|
|
|
throw new Error(`Frontmatter key 'order' must be number in ${fileName}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
const hide = 'hide' in data ? data.hide : false
|
|
|
|
if (hide !== false && hide !== true) {
|
|
|
|
throw new Error(`Frontmatter key 'hide' must be boolean in ${fileName}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
title: data.title,
|
|
|
|
component: data.component,
|
|
|
|
order,
|
|
|
|
hide,
|
|
|
|
}
|
|
|
|
}
|