@4mbl/lint 0.1.0 → 0.1.1

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,11 @@
1
1
  # @4mbl/lint
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 2c91355: Move dependencies not to be dev-only
8
+
3
9
  ## 0.1.0
4
10
 
5
11
  ### Minor Changes
package/README.md CHANGED
@@ -19,7 +19,7 @@ npm install -D @4mbl/lint
19
19
  Create a `eslint.config.ts` file in the root of your project with the desired configuration. This package currently uses eslint. That might change in a future major release.
20
20
 
21
21
  ```js
22
- import defaultConfig, { Config } from '@4mbl/lint/next'; // <-- change `next` to the desired template
22
+ import defaultConfig, { type Config } from '@4mbl/lint/next'; // <-- change `next` to the desired template
23
23
 
24
24
  export default [...defaultConfig] satisfies Config[];
25
25
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4mbl/lint",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Linting configuration for various environments.",
5
5
  "type": "module",
6
6
  "author": "4mbl",
@@ -23,13 +23,13 @@
23
23
  "keywords": [
24
24
  "lint"
25
25
  ],
26
- "scripts": {},
27
- "devDependencies": {
26
+ "dependencies": {
28
27
  "@eslint/js": "^9.38.0",
29
28
  "eslint": "^9.38.0",
30
29
  "eslint-config-next": "^16.0.1",
31
30
  "eslint-plugin-react-compiler": "19.1.0-rc.2",
32
31
  "jiti": "^2.6.1",
33
32
  "typescript-eslint": "^8.46.2"
34
- }
35
- }
33
+ },
34
+ "scripts": {}
35
+ }