Skip to content

Commit 41b58ec

Browse files
committed
migrate framework
1 parent edd0e9d commit 41b58ec

Some content is hidden

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

41 files changed

+3200
-19166
lines changed

.babelrc

-18
This file was deleted.

.editorconfig

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
11+
# Matches multiple files with brace expansion notation
12+
# Set default charset
13+
[*.{js,jsx,ts,tsx,md}]
14+
charset = utf-8
15+
indent_style = space
16+
indent_size = 2
17+
tab_width = 2
18+
end_of_line = lf
19+
insert_final_newline = true
20+
trim_trailing_whitespace = true
21+
22+
23+
# Matches the exact files either package.json or .travis.yml
24+
[{package.json,.travis.yml}]
25+
indent_style = space
26+
indent_size = 2

.eslintignore

-2
This file was deleted.

.eslintrc

-54
This file was deleted.

.gitignore

+22-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
1-
.DS_Store
2-
.idea
3-
*.log
4-
appDevConfig
5-
node_modules
6-
dist
7-
output
8-
tsconfig.tsbuildinfo
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/build
911
.vscode
1012
dist.zip
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
.history
21+
*.log
22+
23+
# secrets
24+
secrets.*.js

.npmignore

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# OS
2+
.DS_Store
3+
4+
# ignore node dependency directories & lock
5+
node_modules
6+
yarn.lock
7+
pnpm-lock.yaml
8+
package-lock.json
9+
10+
# ignore log files and local
11+
*.log
12+
*.local
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
.history
18+
19+
# ignore compiled files
20+
build
21+
types
22+
coverage
23+
24+
# ignore ide settings
25+
.idea
26+
.vscode

.prettierignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Ignore artifacts:
2+
build
3+
coverage
4+
node_modules
5+
pnpm-lock.yaml
6+
pnpm-workspace.yaml

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center">
22
<br/>
3-
<img width="150px" src="./src/public/icon.png" />
3+
<img width="150px" src="./public/icon.png" />
44
<h3 align="center">Word hunter</h3>
55
<p align="center">Discover new english <mark>words</mark> you don't know on any web page</p>
66
</p>

build/webpack.config.analy.ts

-10
This file was deleted.

build/webpack.config.base.ts

-149
This file was deleted.

build/webpack.config.dev.ts

-20
This file was deleted.

build/webpack.config.prod.ts

-15
This file was deleted.

0 commit comments

Comments
 (0)