Skip to content

Commit

Permalink
fix(common): yarn check (#485)
Browse files Browse the repository at this point in the history
* feat(common): yarn check fixes WIP

* fix(common): yarn check WIP

* style(github): format

* feat(common): vim coc config

* feat(common): yarn unplugged

* feat(common): yarn skds

* refactor(cli): yarn check

* refactor(prettier): yarn check

* refactor(schematics): yarn check

* refactor(webpack): yarn check

* refactor(yarn): yarn check

* style(common): format

* chore(code): checkout from master

* refactor(connod): yarn releases - rm unused

* style(common): format

* refactor(common): coc nvim config

* refactor(yarn): yarn check WIP

* refactor(webpack): yarn check WIP

* refactor(schematics): yarn check WIP

* refactor(prettier): yarn check WIP

* refactor(code): yarn check WIP

* refactor(code): yarnc check WIP

* refactor(webpack): yarnc check WIP

* style(code): format

* refactor(cli): yarn check WIP

* refactor(code): yarn check WIP

* refactor(schematics): yarn check WIP

* refactor(webpack): yarn check WIP

* refactor(yarn): yarn check WIP

* style(common): format

* chore(common): checkout .yarn from master

* refactor(prettier): add async getter

* feat(common): unplugged packages

* fix(code): skip lib check

* fix(code): schematics skip lib check

* fix(schematics): prepack

* refactor(common): checkout .yarn from master

* refactor(common): checkout .yarn from master

* refactor(cli): rm unused

* feat(gitignore): add vim

* refactor(common); rm vim
  • Loading branch information
kirill-ivanovvv authored Jan 30, 2025
1 parent 1ce17d3 commit b0c3cfa
Show file tree
Hide file tree
Showing 89 changed files with 746 additions and 605 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,4 @@ fsevents-patch-*.zip
@esbuild-*-npm-*.zip
@rollup-rollup-*-*-npm-*.zip
.idea
.vim
24 changes: 20 additions & 4 deletions .pnp.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Empty file.

This file was deleted.

This file was deleted.

This file was deleted.

Binary file not shown.

This file was deleted.

5 changes: 4 additions & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ compressionLevel: mixed
enableGlobalCache: false

packageExtensions:
'@octokit/auth-action@*':
dependencies:
'@octokit/types': '*'
'@actions/github@*':
dependencies:
undici: '*'
Expand Down Expand Up @@ -100,4 +103,4 @@ defaultSemverRangePrefix: ''
preferReuse: true

yarnPath: yarn/cli/src/cli.dev.mjs
#yarnPath: .yarn/releases/yarn-4.5.1.cjs
# yarnPath: .yarn/releases/yarn-4.5.1.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ import React from 'react'

import { ProjectType } from '@atls/schematics'

const Submit = ({ onSubmit, ...props }: any) => {
interface SubmitProps {
onSubmit: (props: ProjectInformationProperties) => void
}

const Submit = ({ onSubmit, ...props }: ProjectInformationProperties & SubmitProps): null => {
useEffect(() => {
onSubmit(props)
}, [props, onSubmit])
Expand All @@ -27,6 +31,7 @@ interface RequestProjectInformationProps {
// TODO: refactor for usage in new plugin
export const RequestProjectInformation: FC<RequestProjectInformationProps> = ({ onSubmit }) => {
const [type, setType] = useState<ProjectType>()

if (!type) {
return (
<Box flexDirection='column'>
Expand All @@ -48,7 +53,6 @@ export const RequestProjectInformation: FC<RequestProjectInformationProps> = ({
]}
// eslint-disable-next-line
onSelect={(v) => setType(v.value)}
indicatorComponent={IndicatorComponent}
/>
</Box>
)
Expand Down
Loading

0 comments on commit b0c3cfa

Please sign in to comment.