Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 31 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
Expand Down Expand Up @@ -41,8 +42,8 @@ build/Release
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo
Expand All @@ -53,6 +54,9 @@ typings/
# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
Expand All @@ -68,29 +72,38 @@ typings/
# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
# dotenv environment variable files
.env
.env.test
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Serverless directories
.serverless/

Expand All @@ -102,7 +115,18 @@ dist

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.idea
package-lock.json
.DS_Store
build
pnpm-lock.yaml
package-lock.json
example
32 changes: 0 additions & 32 deletions example/craco.config.js

This file was deleted.

55 changes: 0 additions & 55 deletions example/package.json

This file was deleted.

Empty file removed example/public/favicon.ico
Empty file.
1 change: 0 additions & 1 deletion example/public/favicon.svg

This file was deleted.

42 changes: 0 additions & 42 deletions example/public/index.html

This file was deleted.

Binary file removed example/public/logo192.png
Binary file not shown.
Binary file removed example/public/logo512.png
Binary file not shown.
25 changes: 0 additions & 25 deletions example/public/manifest.json

This file was deleted.

Empty file removed example/public/mock/data.json
Empty file.
Empty file removed example/public/mock/error.json
Empty file.
Empty file removed example/public/qrcode.jpg
Empty file.
29 changes: 0 additions & 29 deletions example/src/App.js

This file was deleted.

13 changes: 0 additions & 13 deletions example/src/bootstrap.js

This file was deleted.

1 change: 0 additions & 1 deletion example/src/index.js

This file was deleted.

61 changes: 0 additions & 61 deletions example/src/preset.js

This file was deleted.

5 changes: 0 additions & 5 deletions example/src/setupTests.js

This file was deleted.

12 changes: 0 additions & 12 deletions example/webstorm.webpack.config.js

This file was deleted.

Loading