Skip to content

Commit

Permalink
chore: fix issues with CI/CD (#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
crutchcorn authored Sep 9, 2023
1 parent 4790982 commit e297755
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
15 changes: 5 additions & 10 deletions scripts/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,23 @@ import { BranchConfig, Package } from './types'
export const packages: Package[] = [
{
name: '@tanstack/form-core',
packageDir: 'packages/form-core',
entries: ['main', 'module', 'types'],
packageDir: 'form-core',
},
{
name: '@tanstack/react-form',
packageDir: 'packages/react-form',
entries: ['main', 'module', 'types'],
packageDir: 'react-form',
},
{
name: '@tanstack/vue-form',
packageDir: 'packages/vue-form',
entries: ['main', 'module', 'types'],
packageDir: 'vue-form',
},
// {
// name: '@tanstack/solid-store',
// packageDir: 'packages/solid-store',
// entries: ['main', 'module', 'types'],
// packageDir: 'solid-store',
// },
// {
// name: '@tanstack/svelte-store',
// packageDir: 'packages/svelte-store',
// entries: ['main', 'module', 'types'],
// packageDir: 'svelte-store',
// },
]

Expand Down
1 change: 0 additions & 1 deletion scripts/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export type Parsed = {
export type Package = {
name: string
packageDir: string
entries: Array<'main' | 'module' | 'svelte' | 'types'>
}

export type BranchConfig = {
Expand Down

0 comments on commit e297755

Please sign in to comment.