Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = {
},
},
},
ignorePatterns: ["dist", "cypress"],
ignorePatterns: ["dist", "cypress", "coverage"],
globals: {},
rules: {
// Enforce double quotes
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

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

### Fixed

- Improved `getEnumNameFromValue` and `getEnumValueFromName` performance

### Removed

- Unnecessary dev-dependencies

## [1.2.1] - 2025-03-18

### dependabot: \#57 Bump tj-actions/changed-files from 41 to 46 in /.github/workflows
Expand Down
10 changes: 1 addition & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,13 @@
"start": "rollup -c -w",
"test": "yarn jest",
"start-all": "concurrently \"yarn start\" \"yarn start-yalc\"",
"start-yalc": "yarn nodemon --watch dist -x \"yarn yalc push\"",
"storybook": "start-storybook -p 6006"
"start-yalc": "yarn nodemon --watch dist -x \"yarn yalc push\""
},
"dependencies": {
"date-fns": "^2.30.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@popperjs/core": "^2.11.7",
"@release-it/keep-a-changelog": "^4.0.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
Expand All @@ -59,14 +56,12 @@
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsdoc": "^46.4.4",
"eslint-plugin-storybook": "^0.6.12",
"jest": "^29.6.1",
"jest-localstorage-mock": "^2.4.26",
"nodemon": "^2.0.22",
Expand All @@ -75,11 +70,8 @@
"rollup": "^3.21.4",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^5.1.6",
"webpack": "^5.82.0",
"yalc": "^1.0.0-pre.53"
},
"peerDependencies": {},
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const plugins = [
}),
typescript({
clean: true,
exclude: ["**/__tests__", "**/*.test.ts", "**/stories/**/*"],
exclude: ["**/__tests__", "**/*.test.ts", "**/stories/**/*", "**/coverage"],
}),
commonjs({
include: /\/node_modules\//,
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"baseUrl": "."
},
"include": ["src", "test"],
"exclude": ["node_modules", "dist"]
"exclude": ["node_modules", "dist", "coverage"]
}
Loading