Skip to content

Commit

Permalink
fix: upgrade dependencies (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper authored Jun 9, 2022
1 parent 6d4f0fd commit cf521cc
Show file tree
Hide file tree
Showing 24 changed files with 1,116 additions and 4,313 deletions.
2 changes: 2 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
- run:
name: lint
command: npm run lint
- store_test_results:
path: ./junit.xml
- codecov/upload
release:
executor:
Expand Down
3 changes: 0 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,5 @@
"node": true,
"jest": true
},
"parserOptions": {
"project": "tsconfig.eslint.json"
},
"extends": ["@ctrl/eslint-config"]
}
12 changes: 6 additions & 6 deletions demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
"serve": "vite preview"
},
"devDependencies": {
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"react": "18.1.0",
"react-dom": "18.1.0",
"@tailwindcss/forms": "0.5.1",
"@tailwindcss/forms": "0.5.2",
"autoprefixer": "10.4.7",
"postcss": "8.4.13",
"postcss": "8.4.14",
"tailwindcss": "3.0.24",
"typescript": "4.6.4",
"vite": "2.9.9"
"typescript": "4.7.3",
"vite": "2.9.10"
},
"engines": {
"node": ">=14"
Expand Down
4 changes: 3 additions & 1 deletion demo/src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import React, { useState } from 'react';
import ReactDOM from 'react-dom';

import { filenameParse } from '../../dist/src/index.js';
// eslint-disable-next-line @typescript-eslint/prefer-ts-expect-error
// @ts-ignore
import { filenameParse } from '../../src/index.js';

ReactDOM.render(<Demo />, document.getElementById('root'));

Expand Down
Loading

0 comments on commit cf521cc

Please sign in to comment.