Skip to content

Commit ff17674

Browse files
authored
Merge pull request #157 from koji/feat_update-all-packages
update all packages
2 parents e7b5586 + 489f88e commit ff17674

File tree

235 files changed

+9735
-24995
lines changed

Some content is hidden

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

235 files changed

+9735
-24995
lines changed

.eslintrc.cjs

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import js from "@eslint/js";
2+
import globals from "globals";
3+
import reactHooks from "eslint-plugin-react-hooks";
4+
import reactRefresh from "eslint-plugin-react-refresh";
5+
import tseslint from "typescript-eslint";
6+
7+
export default tseslint.config(
8+
{ ignores: ["dist"] },
9+
{
10+
extends: [js.configs.recommended, ...tseslint.configs.recommended],
11+
files: ["**/*.{ts,tsx}"],
12+
languageOptions: {
13+
ecmaVersion: 2020,
14+
globals: globals.browser,
15+
},
16+
plugins: {
17+
"react-hooks": reactHooks,
18+
"react-refresh": reactRefresh,
19+
},
20+
rules: {
21+
...reactHooks.configs.recommended.rules,
22+
"react-refresh/only-export-components": [
23+
"warn",
24+
{ allowConstantExport: true },
25+
],
26+
},
27+
}
28+
);

.eslintrc.cjs:Zone.Identifier

Whitespace-only changes.

.eslintrc.js

Lines changed: 0 additions & 47 deletions
This file was deleted.

.gitignore

Lines changed: 26 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,35 @@
1-
# lib
2-
lib
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
32

4-
# Logs
5-
logs
6-
*.log
7-
npm-debug.log*
8-
yarn-debug.log*
9-
yarn-error.log*
10-
11-
# Runtime data
12-
pids
13-
*.pid
14-
*.seed
15-
*.pid.lock
16-
17-
# Directory for instrumented libs generated by jscoverage/JSCover
18-
lib-cov
19-
20-
# Coverage directory used by tools like istanbul
21-
coverage
22-
23-
# nyc test coverage
24-
.nyc_output
25-
26-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
27-
.grunt
28-
29-
# Bower dependency directory (https://bower.io/)
30-
bower_components
31-
32-
# node-waf configuration
33-
.lock-wscript
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
347

35-
# Compiled binary addons (https://nodejs.org/api/addons.html)
36-
build/Release
8+
# testing
9+
/coverage
3710

38-
# Dependency directories
39-
node_modules/
40-
jspm_packages/
11+
# production
12+
/build
4113

42-
# TypeScript v1 declaration files
43-
typings/
44-
45-
# Optional npm cache directory
46-
.npm
47-
48-
# Optional eslint cache
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
4920
.eslintcache
5021

51-
# Optional REPL history
52-
.node_repl_history
53-
54-
# Output of 'npm pack'
55-
*.tgz
56-
57-
# Yarn Integrity file
58-
.yarn-integrity
59-
60-
# dotenv environment variables file
61-
.env
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*
6225

63-
# next.js build output
64-
.next
65-
src/stories/.DS_Store
66-
src/.DS_Store
6726

68-
# storybook
69-
storybook-static/
27+
build-storybook.log
7028

71-
# build
72-
build/
73-
.DS_Store
74-
lib/
29+
.pnp.*
30+
.yarn/*
31+
!.yarn/patches
32+
!.yarn/plugins
33+
!.yarn/releases
34+
!.yarn/sdks
35+
!.yarn/versions

.gitignore:Zone.Identifier

Whitespace-only changes.

.prettierrc.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

.storybook/addons.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

.storybook/config.js

Lines changed: 0 additions & 20 deletions
This file was deleted.

.storybook/main.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import type { StorybookConfig } from "@storybook/react-vite";
2+
3+
const config: StorybookConfig = {
4+
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"],
5+
staticDirs: ["../public"],
6+
addons: [
7+
"@storybook/addon-links",
8+
"@storybook/addon-essentials",
9+
"@storybook/addon-interactions",
10+
],
11+
framework: {
12+
name: "@storybook/react-vite",
13+
options: {},
14+
},
15+
};
16+
export default config;

.storybook/main.ts:Zone.Identifier

Whitespace-only changes.

0 commit comments

Comments
 (0)