@theholocron/lint-staged-config 3.2.0 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @theholocron/lint-staged-config
2
2
 
3
+ ## 3.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`30e50b0`](https://github.com/theholocron/configs/commit/30e50b000dd1f9ac61e3ad1c3abee2ab3a52e7ac) Thanks [@iamnewton](https://github.com/iamnewton)! - Add in stylelint
8
+
9
+ ## 3.2.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [`3d54f12`](https://github.com/theholocron/configs/commit/3d54f12618e8a6cc6ccc4559eb48ef402bb04d77) Thanks [@iamnewton](https://github.com/iamnewton)! - Fix the storybook config; its missing the index file from the export
14
+
3
15
  ## 3.2.0
4
16
 
5
17
  ### Minor Changes
@@ -2,7 +2,7 @@
2
2
  * @see https://github.com/lint-staged/lint-staged?tab=readme-ov-file#configuration
3
3
  * @type {import("lint-staged").Config}
4
4
  */
5
- export default {
5
+ const config = {
6
6
  "*.css": "stylelint --fix",
7
7
  "*.{js,jsx}": ["prettier --write", "eslint"],
8
8
  "*.md": ["prettier --write"], // disabling alex --why because of https://github.com/get-alex/alex/issues/348
@@ -12,3 +12,5 @@ export default {
12
12
  "*.{ts,tsx}": ["prettier --write", "eslint", "tsc --noEmit --showConfig"],
13
13
  "package.json": "sort-package-json",
14
14
  };
15
+
16
+ export default config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/lint-staged-config",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "description": "A Lint Staged configuration for linting code that has been staged in Git within the Galaxy.",
5
5
  "homepage": "https://github.com/theholocron/configs/tree/main/packages/lint-staged-config#readme",
6
6
  "bugs": "https://github.com/theholocron/configs/issues",