Release 1.0.8 with platform, security, and UI hardening.
Adds API filter registry, style theme registry, SW bitmask cache clear, KV namespacing, session expiry checks, accessibility improvements, and expanded test coverage. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
+7
-1
@@ -11,6 +11,7 @@ function isExternal(id) {
|
||||
if (id === 'react' || id === 'react/jsx-runtime' || id === 'react-dom' || id === 'react-dom/client') {
|
||||
return true;
|
||||
}
|
||||
if (id === '@phosphor-icons/react' || id.startsWith('@phosphor-icons/react/')) return true;
|
||||
if (id === 'tamagui' || id.startsWith('tamagui/')) return true;
|
||||
if (id.startsWith('@tamagui/')) return true;
|
||||
return false;
|
||||
@@ -28,7 +29,12 @@ export default defineConfig({
|
||||
],
|
||||
build: {
|
||||
lib: {
|
||||
entry: path.resolve(__dirname, 'src/index.js'),
|
||||
entry: {
|
||||
index: path.resolve(__dirname, 'src/index.js'),
|
||||
'ui/components/index': path.resolve(__dirname, 'src/ui/components/index.js'),
|
||||
'ui/route-loading': path.resolve(__dirname, 'src/ui/route-loading.js'),
|
||||
'ui/pages/SettingsPage': path.resolve(__dirname, 'src/ui/pages/SettingsPage.jsx')
|
||||
},
|
||||
formats: ['es']
|
||||
},
|
||||
rollupOptions: {
|
||||
|
||||
Reference in New Issue
Block a user