Skip to content

Commit

Permalink
Merge pull request #213 from melfore/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
luciob committed Jun 19, 2024
2 parents 3ba0f1f + 2bc3904 commit e84bb60
Show file tree
Hide file tree
Showing 26 changed files with 3,470 additions and 3,385 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/node_modules
/.pnp
.pnp.js
/tsconfig.json

# testing
/coverage
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ jobs:
run: |
git commit -m "refactor: 💡 Clean code" -a
- name: Unit tests
run: |
npm run test:ci
- name: Generate Docs
id: generate-docs
run: |
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@ yarn-error.log*
# local libs
/.yalc
yalc.lock

# typescript local config
/tsconfig.json
1 change: 1 addition & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npm run pre:push
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/hydrogen
v20.14.0
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/node_modules
/.pnp
.pnp.js
/tsconfig.json

# testing
/coverage
Expand Down
1 change: 0 additions & 1 deletion .storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ const config: StorybookConfig = {
"@storybook/addon-essentials",
"@storybook/addon-interactions",
"@storybook/addon-coverage",
"@storybook/addon-mdx-gfm",
"@storybook/addon-webpack5-compiler-babel",
],
docs: {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json → .typescript/build/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
"target": "ES2016"
},
"include": ["src"],
"exclude": ["dist", "node_modules", "src/**/*.test.*", "src/**/*.stories.*"]
"exclude": ["dist", "node_modules", "src/**/*.test.*", "src/**/*.stories.*", "src/@stories/*", "src/utils/stories/*"]
}
18 changes: 18 additions & 0 deletions .typescript/test/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"compilerOptions": {
"allowJs": true,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"module": "Node16",
"moduleResolution": "Node16",
"noEmit": true,
"outDir": "./dist",
"skipLibCheck": true,
"strict": true,
"target": "ES2016"
},
"include": ["src"],
"exclude": ["dist", "node_modules"]
}
Loading

0 comments on commit e84bb60

Please sign in to comment.