Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit 6a9a92c

Browse files
authored
refactor: works cu workflow (#1173)
* refactor(works-workflow): wip * refactor(works-workflow): jump page & header/body style adjust * refactor(works-workflow): wip * refactor(works-workflow): wip * refactor(works-workflow): social CRUD logic * refactor(works-workflow): input system re-org * refactor(works-workflow): checker debug * refactor(works-workflow): cities select * refactor(works-workflow): perfer side-project * refactor(works-workflow): techstack UI * refactor(works-workflow): techstack UX/logic wip * refactor(works-workflow): community setter base on tech * refactor(works-workflow): select tech wip * refactor(works-workflow): delete tech * refactor(works-workflow): style, spliter * refactor(community-setter): add not found hint * refactor(works-workflow): add techstack logic * refactor(works-workflow): remove tech logic & re-org * refactor(works-workflow): preview with techstack * refactor(works-workflow): techstack input fmt * refactor(works-workflow): category for search community * refactor(works-workflow): valid states logic & stepbar style * refactor(works-workflow): publish wip * refactor(works-workflow): launch part logic * refactor(works-workflow): works list display * refactor(works-workflow): adjust editor style & naming * refactor(works-workflow): extract TechStacks widgets * chore(deps): update latest next-12 stack * refactor(works): viewer wip * chore: ignore tsconfig.buildinfo * chore: adjust _app import * refactor(works-viewer): wip * refactor(works-viewer): techstack view * refactor(works-viewer): wip * refactor(works-viewer): detail page wip * refactor(works-workflow): extract WorksInfoCard & re-org * refactor(works-workflow): update workflow & re-org * refactor(works-workflow): update social logic adjust
1 parent 9e19e36 commit 6a9a92c

File tree

174 files changed

+4861
-1441
lines changed

Some content is hidden

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

174 files changed

+4861
-1441
lines changed

.babelrc

+1-18
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,5 @@
11
{
2-
"presets": [["next/babel"]],
3-
"env": {
4-
"production": {
5-
"presets": [
6-
[
7-
"next/babel",
8-
{
9-
"preset-env": {
10-
"useBuiltIns": "usage",
11-
"corejs": "3.6.5",
12-
"targets": "> 0.25%, not dead",
13-
"debug": false
14-
}
15-
}
16-
]
17-
]
18-
}
19-
},
2+
"presets": ["next/babel"],
203
"plugins": [
214
"add-react-displayname",
225
[

.eslintignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
!.eslintrc.js
22
.gitignore
33
next-env.d.ts
4+
tsconfig.tsbuildinfo
45
*.json
56
*.lock
67
*.hbs
@@ -10,4 +11,5 @@ next-env.d.ts
1011
*.txt
1112
*.md
1213
*.ico
13-
*.hbs
14+
*.hbs
15+
*.css

.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ module.exports = {
4141
},
4242
},
4343
rules: {
44+
'no-extra-boolean-cast': 0,
4445
'react/require-default-props': 0,
4546
'@typescript-eslint/no-var-requires': 0,
4647
'@typescript-eslint/ban-ts-comment': 0,

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ cypress//integration/examples
1313
.DS_Store
1414
.eslintcache
1515

16-
cypress/videos/*
16+
cypress/videos/*
17+
tsconfig.tsbuildinfo

next.config.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ const withBundleAnalyzer = require('@next/bundle-analyzer')({
1212
// next-plugins end
1313

1414
const nextConfig = {
15-
webpack: (config, { isServer, buildId }) => {
15+
webpack: (config) => {
1616
config.plugins = config.plugins || []
1717

18-
config.plugins.push(new webpack.IgnorePlugin(/(?:\/tests|__mocks)/))
1918
// moment locale size is too big
2019
config.plugins.push(
2120
new webpack.ContextReplacementPlugin(/moment[/\\]locale$/, /(en)/),

0 commit comments

Comments
 (0)