Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
maphel committed Sep 3, 2023
1 parent 205303a commit cc52814
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Development files
*.ts
*.tsx
*.test.js
*.spec.js
*.test.ts
*.spec.ts
tsconfig.json
webpack.config.js
__tests__/

# Configurations
.eslintrc
.prettierrc
.babelrc

# Miscellaneous
.gitignore
.npmignore
README.md
.cache/
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "@maphel/classnames",
"version": "1.0.1",
"description": "A utility for generating class names",
"main": "./dist/classnames/index.js",
"types": "./dist/classnames/index.d.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"access": "public",
"scripts": {
"test": "jest --coverage",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"compilerOptions": {
"rootDir": "./src",
"moduleResolution": "node",
"composite": false,
"allowSyntheticDefaultImports": true,
Expand All @@ -17,7 +18,6 @@
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"incremental": true,
"baseUrl": ".",
"sourceMap": true,
"esModuleInterop": true,
"resolveJsonModule": true
Expand Down

0 comments on commit cc52814

Please sign in to comment.