@langri-sha/projen-eslint 0.2.1 → 0.3.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.json CHANGED
@@ -2,7 +2,89 @@
2
2
  "name": "@langri-sha/projen-eslint",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 17 Jul 2024 10:45:28 GMT",
5
+ "date": "Sun, 19 Jul 2026 09:48:59 GMT",
6
+ "version": "0.3.1",
7
+ "tag": "@langri-sha/projen-eslint_v0.3.1",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "filip.dupanovic@gmail.com",
12
+ "package": "@langri-sha/projen-eslint",
13
+ "commit": "aba78d67f7644a3646ef775e93c468a954a94382",
14
+ "comment": "chore: widen eslint peer dependency range to ^9.0.0 || ^10.0.0"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Tue, 10 Sep 2024 10:39:17 GMT",
21
+ "version": "0.3.0",
22
+ "tag": "@langri-sha/projen-eslint_v0.3.0",
23
+ "comments": {
24
+ "none": [
25
+ {
26
+ "author": "filip.dupanovic@gmail.com",
27
+ "package": "@langri-sha/projen-eslint",
28
+ "commit": "ed5540272c92323003c8a7fc1a315b7580a1a2c9",
29
+ "comment": "feat(projen): Post-upgrade updates"
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "date": "Sat, 27 Jul 2024 15:50:16 GMT",
36
+ "version": "0.3.0",
37
+ "tag": "@langri-sha/projen-eslint_v0.3.0",
38
+ "comments": {
39
+ "none": [
40
+ {
41
+ "author": "filip.dupanovic@gmail.com",
42
+ "package": "@langri-sha/projen-eslint",
43
+ "commit": "d542415a6b2c2c339a8367c77b925842000f9f9a",
44
+ "comment": "feat(workspace): Exclude compiling test modules"
45
+ }
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "date": "Fri, 26 Jul 2024 21:00:29 GMT",
51
+ "version": "0.3.0",
52
+ "tag": "@langri-sha/projen-eslint_v0.3.0",
53
+ "comments": {
54
+ "patch": [
55
+ {
56
+ "author": "email not defined",
57
+ "package": "@langri-sha/projen-eslint",
58
+ "commit": "d58e2b444358fb65166d0878c185220c6e0a7bb0",
59
+ "comment": "chore(deps): chore(deps): update dependency projen to v0.84.6"
60
+ }
61
+ ],
62
+ "none": [
63
+ {
64
+ "author": "filip.dupanovic@gmail.com",
65
+ "package": "@langri-sha/projen-eslint",
66
+ "commit": "d58e2b444358fb65166d0878c185220c6e0a7bb0",
67
+ "comment": "feat(projen): Add Git ignore patterns"
68
+ },
69
+ {
70
+ "author": "filip.dupanovic@gmail.com",
71
+ "package": "@langri-sha/projen-eslint",
72
+ "commit": "d58e2b444358fb65166d0878c185220c6e0a7bb0",
73
+ "comment": "feat(workspace): Migrate documentation pathnames"
74
+ }
75
+ ],
76
+ "minor": [
77
+ {
78
+ "author": "filip.dupanovic@gmail.com",
79
+ "package": "@langri-sha/projen-eslint",
80
+ "commit": "d58e2b444358fb65166d0878c185220c6e0a7bb0",
81
+ "comment": "feat(workspace): Harden Projen component types"
82
+ }
83
+ ]
84
+ }
85
+ },
86
+ {
87
+ "date": "Wed, 17 Jul 2024 10:48:16 GMT",
6
88
  "version": "0.2.1",
7
89
  "tag": "@langri-sha/projen-eslint_v0.2.1",
8
90
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,32 @@
1
1
  # Change Log - @langri-sha/projen-eslint
2
2
 
3
- This log was last generated on Wed, 17 Jul 2024 10:45:28 GMT and should not be manually modified.
3
+ <!-- This log was last generated on Sun, 19 Jul 2026 09:48:59 GMT and should not be manually modified. -->
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 0.3.1
8
+
9
+ Sun, 19 Jul 2026 09:48:59 GMT
10
+
11
+ ### Patches
12
+
13
+ - chore: widen eslint peer dependency range to ^9.0.0 || ^10.0.0 (filip.dupanovic@gmail.com)
14
+
15
+ ## 0.3.0
16
+
17
+ Fri, 26 Jul 2024 21:00:29 GMT
18
+
19
+ ### Minor changes
20
+
21
+ - feat(workspace): Harden Projen component types (filip.dupanovic@gmail.com)
22
+
23
+ ### Patches
24
+
25
+ - chore(deps): chore(deps): update dependency projen to v0.84.6 (email not defined)
26
+
7
27
  ## 0.2.1
8
28
 
9
- Wed, 17 Jul 2024 10:45:28 GMT
29
+ Wed, 17 Jul 2024 10:48:16 GMT
10
30
 
11
31
  ### Patches
12
32
 
package/dist/index.d.ts CHANGED
@@ -8,19 +8,19 @@ export interface ESLintOptions {
8
8
  *
9
9
  * @default 'eslint.config.js'
10
10
  */
11
- filename?: string;
11
+ readonly filename?: string;
12
12
  /**
13
13
  * Name of the ESLint configuration package to extend from.
14
14
  */
15
- extends?: string;
15
+ readonly extends?: string;
16
16
  /**
17
17
  * Ignore patterns.
18
18
  */
19
- ignorePatterns?: string[];
19
+ readonly ignorePatterns?: string[];
20
20
  /**
21
21
  * Prettier configuration object.
22
22
  */
23
- config?: any[];
23
+ readonly config?: any[];
24
24
  }
25
25
  export declare class ESLint extends FileBase {
26
26
  #private;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAGrD;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IAEjB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAA;IAEhB;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,EAAE,CAAA;IAEzB;;OAEG;IAEH,MAAM,CAAC,EAAE,GAAG,EAAE,CAAA;CACf;AAED,qBAAa,MAAO,SAAQ,QAAQ;;IAGlC,MAAM,EAAE,GAAG,EAAE,CAAA;IACb,cAAc,EAAE,MAAM,EAAE,CAAA;gBAEZ,OAAO,EAAE,OAAO,EAAE,OAAO,GAAE,aAAkB;cAatC,iBAAiB,CAAC,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,SAAS;CAkBvE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAGrD;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;IAE1B;;OAEG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,CAAA;IAEzB;;OAEG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAA;IAElC;;OAEG;IAEH,QAAQ,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,CAAA;CACxB;AAED,qBAAa,MAAO,SAAQ,QAAQ;;IAGlC,MAAM,EAAE,GAAG,EAAE,CAAA;IACb,cAAc,EAAE,MAAM,EAAE,CAAA;gBAEZ,OAAO,EAAE,OAAO,EAAE,OAAO,GAAE,aAAkB;cAatC,iBAAiB,CAAC,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,SAAS;CAkBvE"}
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@langri-sha/projen-eslint",
3
- "version": "0.2.1",
3
+ "version": "0.3.1",
4
4
  "bugs": {
5
- "url": "https://github.com/langri-sha/langri-sha.com/issues"
5
+ "url": "https://github.com/langri-sha/projen/issues"
6
6
  },
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "git+https://github.com/langri-sha/langri-sha.com.git",
9
+ "url": "git+https://github.com/langri-sha/projen.git",
10
10
  "directory": "packages/projen-eslint"
11
11
  },
12
12
  "license": "MIT",
@@ -25,13 +25,13 @@
25
25
  "serialize-javascript": "6.0.2"
26
26
  },
27
27
  "devDependencies": {
28
- "@langri-sha/tsconfig": "0.10.1",
29
- "@langri-sha/vitest": "0.1.1",
28
+ "@langri-sha/tsconfig": "^0.10.1",
29
+ "@langri-sha/vitest": "^0.1.1",
30
30
  "@types/serialize-javascript": "5.0.4"
31
31
  },
32
32
  "peerDependencies": {
33
- "eslint": "^9.0.0",
34
- "projen": "^0.82.0"
33
+ "eslint": "^9.0.0 || ^10.0.0",
34
+ "projen": "^0.86.0"
35
35
  },
36
36
  "publishConfig": {
37
37
  "access": "public"
package/src/index.ts CHANGED
@@ -10,23 +10,23 @@ export interface ESLintOptions {
10
10
  *
11
11
  * @default 'eslint.config.js'
12
12
  */
13
- filename?: string
13
+ readonly filename?: string
14
14
 
15
15
  /**
16
16
  * Name of the ESLint configuration package to extend from.
17
17
  */
18
- extends?: string
18
+ readonly extends?: string
19
19
 
20
20
  /**
21
21
  * Ignore patterns.
22
22
  */
23
- ignorePatterns?: string[]
23
+ readonly ignorePatterns?: string[]
24
24
 
25
25
  /**
26
26
  * Prettier configuration object.
27
27
  */
28
28
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
29
- config?: any[]
29
+ readonly config?: any[]
30
30
  }
31
31
 
32
32
  export class ESLint extends FileBase {
File without changes