Skip to content

Commit

Permalink
Merge pull request #17 from squidit/feature/add-more-components
Browse files Browse the repository at this point in the history
💚 Fix build
  • Loading branch information
wandersonsales-dev committed May 8, 2024
2 parents a3661f6 + ed0f686 commit 07ea8ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@squidit/react-css",
"version": "1.0.2",
"version": "1.0.3",
"scripts": {
"format": "prettier --write --parser typescript '**/*.{ts,tsx}'",
"lint": "eslint src --ext js,ts,tsx",
"build": "rm -rf dist && tsc && vite build",
"build": "rm -rf dist && vite build",
"test": "vitest run",
"test-watch": "vitest",
"test:ui": "vitest --ui",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
/* Linting */
"strict": false, // Enables strict type checking.
"noUnusedLocals": false, // Flags unused local variables.
"noUnusedParameters": true, // Flags unused function parameters.
"noUnusedParameters": false, // Flags unused function parameters.
"noFallthroughCasesInSwitch": true, // Requires handling all cases in a switch statement.
"declaration": true, // Generates declaration files for TypeScript.
"declaration": true // Generates declaration files for TypeScript.
},
"include": ["src/**/*", "setupTests.ts"], // Specifies the directory to include when searching for TypeScript files.
"exclude": ["src/**/__docs__", "src/**/__test__"]
Expand Down

0 comments on commit 07ea8ad

Please sign in to comment.