Skip to content

Commit a35b156

Browse files
authored
Remove unnecessary dev-dependencies (#61)
1 parent c6ba3d6 commit a35b156

File tree

6 files changed

+31
-513
lines changed

6 files changed

+31
-513
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module.exports = {
3333
},
3434
},
3535
},
36-
ignorePatterns: ["dist", "cypress"],
36+
ignorePatterns: ["dist", "cypress", "coverage"],
3737
globals: {},
3838
rules: {
3939
// Enforce double quotes

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
### Changed
1313

1414
- Split up `CI` workflow into two separate workflows for the comment posting to work for PRs from forks.
15+
- Ignore code coverage output folder
1516

1617
### Fixed
1718

1819
- Improved `getEnumNameFromValue` and `getEnumValueFromName` performance
1920

21+
### Removed
22+
23+
- Unnecessary dev-dependencies
24+
2025
## [1.2.1] - 2025-03-18
2126

2227
### dependabot: \#57 Bump tj-actions/changed-files from 41 to 46 in /.github/workflows

package.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,13 @@
3939
"start": "rollup -c -w",
4040
"test": "yarn jest",
4141
"start-all": "concurrently \"yarn start\" \"yarn start-yalc\"",
42-
"start-yalc": "yarn nodemon --watch dist -x \"yarn yalc push\"",
43-
"storybook": "start-storybook -p 6006"
42+
"start-yalc": "yarn nodemon --watch dist -x \"yarn yalc push\""
4443
},
4544
"dependencies": {
4645
"date-fns": "^2.30.0",
4746
"uuid": "^9.0.1"
4847
},
4948
"devDependencies": {
50-
"@babel/core": "^7.21.8",
51-
"@popperjs/core": "^2.11.7",
5249
"@release-it/keep-a-changelog": "^4.0.0",
5350
"@rollup/plugin-commonjs": "^24.1.0",
5451
"@rollup/plugin-node-resolve": "^15.0.2",
@@ -59,14 +56,12 @@
5956
"@typescript-eslint/eslint-plugin": "^5.59.2",
6057
"@typescript-eslint/parser": "^5.59.2",
6158
"concurrently": "^8.0.1",
62-
"cross-env": "^7.0.3",
6359
"eslint": "^8.45.0",
6460
"eslint-config-prettier": "^8.8.0",
6561
"eslint-import-resolver-typescript": "^3.5.5",
6662
"eslint-plugin-import": "^2.27.5",
6763
"eslint-plugin-jest": "^27.2.3",
6864
"eslint-plugin-jsdoc": "^46.4.4",
69-
"eslint-plugin-storybook": "^0.6.12",
7065
"jest": "^29.6.1",
7166
"jest-localstorage-mock": "^2.4.26",
7267
"nodemon": "^2.0.22",
@@ -75,11 +70,8 @@
7570
"rollup": "^3.21.4",
7671
"rollup-plugin-peer-deps-external": "^2.2.4",
7772
"rollup-plugin-typescript2": "^0.34.1",
78-
"shx": "^0.3.4",
7973
"ts-jest": "^29.1.1",
80-
"tsconfig-paths-webpack-plugin": "^4.0.1",
8174
"typescript": "^5.1.6",
82-
"webpack": "^5.82.0",
8375
"yalc": "^1.0.0-pre.53"
8476
},
8577
"peerDependencies": {},

rollup.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const plugins = [
1212
}),
1313
typescript({
1414
clean: true,
15-
exclude: ["**/__tests__", "**/*.test.ts", "**/stories/**/*"],
15+
exclude: ["**/__tests__", "**/*.test.ts", "**/stories/**/*", "**/coverage"],
1616
}),
1717
commonjs({
1818
include: /\/node_modules\//,

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
"baseUrl": "."
1919
},
2020
"include": ["src", "test"],
21-
"exclude": ["node_modules", "dist"]
21+
"exclude": ["node_modules", "dist", "coverage"]
2222
}

0 commit comments

Comments
 (0)