Skip to content

Commit b0c3cfa

Browse files
fix(common): yarn check (#485)
* 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
1 parent 1ce17d3 commit b0c3cfa

File tree

89 files changed

+746
-605
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+746
-605
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,4 @@ fsevents-patch-*.zip
5555
@esbuild-*-npm-*.zip
5656
@rollup-rollup-*-*-npm-*.zip
5757
.idea
58+
.vim

.pnp.cjs

+20-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.yarn/unplugged/@esbuild-linux-x64-npm-0.23.1-e5d2d8764d/node_modules/@esbuild/linux-x64/package.json

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.yarn/unplugged/@rollup-rollup-linux-x64-gnu-npm-4.21.2-65bebf97f0/node_modules/@rollup/rollup-linux-x64-gnu/package.json

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.yarn/unplugged/fsevents-patch-6b67494872/node_modules/fsevents/.ready

Whitespace-only changes.

.yarn/unplugged/fsevents-patch-6b67494872/node_modules/fsevents/LICENSE

-22
This file was deleted.

.yarn/unplugged/fsevents-patch-6b67494872/node_modules/fsevents/fsevents.d.ts

-46
This file was deleted.

.yarn/unplugged/fsevents-patch-6b67494872/node_modules/fsevents/fsevents.js

-85
This file was deleted.
Binary file not shown.

.yarn/unplugged/fsevents-patch-6b67494872/node_modules/fsevents/vfs.js

-76
This file was deleted.

.yarnrc.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ compressionLevel: mixed
33
enableGlobalCache: false
44

55
packageExtensions:
6+
'@octokit/auth-action@*':
7+
dependencies:
8+
'@octokit/types': '*'
69
'@actions/github@*':
710
dependencies:
811
undici: '*'
@@ -100,4 +103,4 @@ defaultSemverRangePrefix: ''
100103
preferReuse: true
101104

102105
yarnPath: yarn/cli/src/cli.dev.mjs
103-
#yarnPath: .yarn/releases/yarn-4.5.1.cjs
106+
# yarnPath: .yarn/releases/yarn-4.5.1.cjs

cli/cli-ui-schematics-component/src/request-project-information/request-project-information.component.tsx

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ import React from 'react'
99

1010
import { ProjectType } from '@atls/schematics'
1111

12-
const Submit = ({ onSubmit, ...props }: any) => {
12+
interface SubmitProps {
13+
onSubmit: (props: ProjectInformationProperties) => void
14+
}
15+
16+
const Submit = ({ onSubmit, ...props }: ProjectInformationProperties & SubmitProps): null => {
1317
useEffect(() => {
1418
onSubmit(props)
1519
}, [props, onSubmit])
@@ -27,6 +31,7 @@ interface RequestProjectInformationProps {
2731
// TODO: refactor for usage in new plugin
2832
export const RequestProjectInformation: FC<RequestProjectInformationProps> = ({ onSubmit }) => {
2933
const [type, setType] = useState<ProjectType>()
34+
3035
if (!type) {
3136
return (
3237
<Box flexDirection='column'>
@@ -48,7 +53,6 @@ export const RequestProjectInformation: FC<RequestProjectInformationProps> = ({
4853
]}
4954
// eslint-disable-next-line
5055
onSelect={(v) => setType(v.value)}
51-
indicatorComponent={IndicatorComponent}
5256
/>
5357
</Box>
5458
)

0 commit comments

Comments
 (0)