@langri-sha/projen-typescript-config 0.4.1 → 0.5.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.json +44 -1
- package/CHANGELOG.md +15 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/index.ts +2 -2
- /package/{readme → readme.md} +0 -0
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,50 @@
|
|
|
2
2
|
"name": "@langri-sha/projen-typescript-config",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Fri, 26 Jul 2024 20:58:04 GMT",
|
|
6
|
+
"version": "0.5.0",
|
|
7
|
+
"tag": "@langri-sha/projen-typescript-config_v0.5.0",
|
|
8
|
+
"comments": {
|
|
9
|
+
"none": [
|
|
10
|
+
{
|
|
11
|
+
"author": "filip.dupanovic@gmail.com",
|
|
12
|
+
"package": "@langri-sha/projen-typescript-config",
|
|
13
|
+
"commit": "d58e2b444358fb65166d0878c185220c6e0a7bb0",
|
|
14
|
+
"comment": "feat(projen): Add Git ignore patterns"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "filip.dupanovic@gmail.com",
|
|
18
|
+
"package": "@langri-sha/projen-typescript-config",
|
|
19
|
+
"commit": "d58e2b444358fb65166d0878c185220c6e0a7bb0",
|
|
20
|
+
"comment": "feat(workspace): Migrate documentation pathnames"
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"patch": [
|
|
24
|
+
{
|
|
25
|
+
"author": "email not defined",
|
|
26
|
+
"package": "@langri-sha/projen-typescript-config",
|
|
27
|
+
"commit": "d58e2b444358fb65166d0878c185220c6e0a7bb0",
|
|
28
|
+
"comment": "chore(deps): chore(deps): update dependency projen to v0.84.6"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"author": "email not defined",
|
|
32
|
+
"package": "@langri-sha/projen-typescript-config",
|
|
33
|
+
"commit": "d58e2b444358fb65166d0878c185220c6e0a7bb0",
|
|
34
|
+
"comment": "chore(deps): chore(deps): update dependency @types/node to v20.14.12"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"minor": [
|
|
38
|
+
{
|
|
39
|
+
"author": "filip.dupanovic@gmail.com",
|
|
40
|
+
"package": "@langri-sha/projen-typescript-config",
|
|
41
|
+
"commit": "d58e2b444358fb65166d0878c185220c6e0a7bb0",
|
|
42
|
+
"comment": "feat(workspace): Harden Projen component types"
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"date": "Wed, 17 Jul 2024 10:48:16 GMT",
|
|
6
49
|
"version": "0.4.1",
|
|
7
50
|
"tag": "@langri-sha/projen-typescript-config_v0.4.1",
|
|
8
51
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,25 @@
|
|
|
1
1
|
# Change Log - @langri-sha/projen-typescript-config
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 26 Jul 2024 20:58:04 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.5.0
|
|
8
|
+
|
|
9
|
+
Fri, 26 Jul 2024 20:58:04 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- feat(workspace): Harden Projen component types (filip.dupanovic@gmail.com)
|
|
14
|
+
|
|
15
|
+
### Patches
|
|
16
|
+
|
|
17
|
+
- chore(deps): chore(deps): update dependency projen to v0.84.6 (email not defined)
|
|
18
|
+
- chore(deps): chore(deps): update dependency @types/node to v20.14.12 (email not defined)
|
|
19
|
+
|
|
7
20
|
## 0.4.1
|
|
8
21
|
|
|
9
|
-
Wed, 17 Jul 2024 10:
|
|
22
|
+
Wed, 17 Jul 2024 10:48:16 GMT
|
|
10
23
|
|
|
11
24
|
### Patches
|
|
12
25
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { JSONSchemaForTheTypeScriptCompilerSConfigurationFile } from '@schemastore/tsconfig';
|
|
2
2
|
import { IResolver, JsonFile, Project } from 'projen';
|
|
3
3
|
export interface TypeScriptConfigOptions {
|
|
4
|
-
fileName?: string;
|
|
5
|
-
config?: JSONSchemaForTheTypeScriptCompilerSConfigurationFile & {
|
|
4
|
+
readonly fileName?: string;
|
|
5
|
+
readonly config?: JSONSchemaForTheTypeScriptCompilerSConfigurationFile & {
|
|
6
6
|
/**
|
|
7
7
|
* Referenced projects. Requires TypeScript version 3.0 or later.
|
|
8
8
|
*/
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oDAAoD,EAAE,MAAM,uBAAuB,CAAA;AACjG,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAErD,MAAM,WAAW,uBAAuB;IACtC,QAAQ,CAAC,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oDAAoD,EAAE,MAAM,uBAAuB,CAAA;AACjG,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAErD,MAAM,WAAW,uBAAuB;IACtC,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;IAE1B,QAAQ,CAAC,MAAM,CAAC,EAAE,oDAAoD,GAAG;QACvE;;WAEG;QACH,UAAU,CAAC,EAAE;YACX;;eAEG;YACH,IAAI,EAAE,MAAM,CAAA;SACb,EAAE,CAAA;KACJ,CAAA;CACF;AAED,qBAAa,gBAAiB,SAAQ,QAAQ;gBAChC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,uBAAuB;cAY3C,iBAAiB,CAClC,QAAQ,EAAE,SAAS,GAClB,MAAM,GAAG,SAAS;IA6CrB;;OAEG;IACH,UAAU,CAAC,GAAG,mBAAmB,EAAE,MAAM,EAAE,GAAG,IAAI;IAIlD;;OAEG;IACH,UAAU,CAAC,GAAG,mBAAmB,EAAE,MAAM,EAAE,GAAG,IAAI;IAIlD;;OAEG;IACH,OAAO,CAAC,GAAG,SAAS,EAAE,MAAM,EAAE,GAAG,IAAI;IAIrC;;OAEG;IACH,YAAY,CAAC,GAAG,KAAK,EAAE,MAAM,EAAE,GAAG,IAAI;CAQvC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langri-sha/projen-typescript-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"bugs": {
|
|
5
5
|
"url": "https://github.com/langri-sha/langri-sha.com/issues"
|
|
6
6
|
},
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@langri-sha/tsconfig": "0.10.1",
|
|
29
29
|
"@langri-sha/vitest": "0.1.1",
|
|
30
|
-
"@types/node": "20.14.
|
|
30
|
+
"@types/node": "20.14.12"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"projen": "^0.
|
|
33
|
+
"projen": "^0.84.0"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
package/src/index.ts
CHANGED
|
@@ -2,9 +2,9 @@ import type { JSONSchemaForTheTypeScriptCompilerSConfigurationFile } from '@sche
|
|
|
2
2
|
import { IResolver, JsonFile, Project } from 'projen'
|
|
3
3
|
|
|
4
4
|
export interface TypeScriptConfigOptions {
|
|
5
|
-
fileName?: string
|
|
5
|
+
readonly fileName?: string
|
|
6
6
|
|
|
7
|
-
config?: JSONSchemaForTheTypeScriptCompilerSConfigurationFile & {
|
|
7
|
+
readonly config?: JSONSchemaForTheTypeScriptCompilerSConfigurationFile & {
|
|
8
8
|
/**
|
|
9
9
|
* Referenced projects. Requires TypeScript version 3.0 or later.
|
|
10
10
|
*/
|
/package/{readme → readme.md}
RENAMED
|
File without changes
|