File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
1
'use client' ;
2
2
3
- import { ReactElement } from 'react' ;
3
+ import { ReactElement } from 'react' ;
4
4
import Window from '@/components/Window' ;
5
5
6
6
import styles from './generator.module.scss' ;
7
- import { useForm } from 'react-hook-form' ;
7
+ import { useForm } from 'react-hook-form' ;
8
8
import Settings from './Settings' ;
9
9
import GeneratedTaskfile from './GeneredTaskfile' ;
10
10
import Form from '@/components/Form' ;
11
- import { Font } from './GeneredTaskfile/buildHeader' ;
11
+ import { Font } from './GeneredTaskfile/buildHeader' ;
12
12
13
13
export type GeneratorSettings = {
14
14
project : string ;
Original file line number Diff line number Diff line change 1
1
'use client' ;
2
2
3
- import { ReactElement , useState } from 'react' ;
3
+ import { ReactElement , useState } from 'react' ;
4
4
5
5
import styles from './save-file.module.scss' ;
6
6
Original file line number Diff line number Diff line change 1
- import { GeneratorSettings } from '@/components/Generator' ;
2
- import { TaskfileAddons } from '@/components/Generator/GeneredTaskfile/taskfile' ;
1
+ import { GeneratorSettings } from '@/components/Generator' ;
2
+ import { TaskfileAddons } from '@/components/Generator/GeneredTaskfile/taskfile' ;
3
3
4
4
import runtime from './runtime' ;
5
5
import git from './git' ;
6
6
import fileUtilities from './fileUtilities' ;
7
- import appUtilities from " @/components/Generator/GeneredTaskfile/addons/appUtilities" ;
7
+ import appUtilities from ' @/components/Generator/GeneredTaskfile/addons/appUtilities' ;
8
8
9
9
/**
10
10
* Render addons for the Taskfile based on the generator settings
Original file line number Diff line number Diff line change 1
- import { GeneratorSettings } from '@/components/Generator' ;
2
- import { TaskfileAddons } from '@/components/Generator/GeneredTaskfile/taskfile' ;
1
+ import { GeneratorSettings } from '@/components/Generator' ;
2
+ import { TaskfileAddons } from '@/components/Generator/GeneredTaskfile/taskfile' ;
3
3
import loadTemplate from '@/helpers/loadTemplate' ;
4
4
import appUtilitiesSh from './app-utilities.sh' ;
5
5
Original file line number Diff line number Diff line change 1
1
'use client' ;
2
2
3
- import { ReactElement } from 'react' ;
3
+ import { ReactElement } from 'react' ;
4
4
5
5
import styles from './settings.module.scss' ;
6
6
import TextInput from '@/components/Form/Text' ;
7
7
import RadioInput from '@/components/Form/Radio' ;
8
- import { useFormContext } from 'react-hook-form' ;
9
- import { GeneratorSettings } from '@/components/Generator' ;
8
+ import { useFormContext } from 'react-hook-form' ;
9
+ import { GeneratorSettings } from '@/components/Generator' ;
10
10
import Checkbox from '@/components/Form/Checkbox' ;
11
11
12
12
const Settings = ( ) : ReactElement => {
You can’t perform that action at this time.
0 commit comments