@langri-sha/projen-project 0.4.0 → 0.4.2
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 +15 -0
- package/CHANGELOG.md +9 -1
- package/package.json +13 -11
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langri-sha/projen-project",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"date": "Fri, 03 May 2024 12:54:50 GMT",
|
|
6
|
+
"version": "0.4.1",
|
|
7
|
+
"tag": "@langri-sha/projen-project_v0.4.1",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "filip.dupanovic@gmail.com",
|
|
12
|
+
"package": "@langri-sha/projen-project",
|
|
13
|
+
"commit": "a2e01a6b6e6b2243be9c5cdd2e77fe7cc162b6de",
|
|
14
|
+
"comment": "fix(workspace): Correct published paths"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
4
19
|
{
|
|
5
20
|
"date": "Fri, 03 May 2024 10:44:32 GMT",
|
|
6
21
|
"version": "0.4.0",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
# Change Log - @langri-sha/projen-project
|
|
2
2
|
|
|
3
|
-
This log was last generated on Fri, 03 May 2024
|
|
3
|
+
This log was last generated on Fri, 03 May 2024 12:54:50 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 0.4.1
|
|
8
|
+
|
|
9
|
+
Fri, 03 May 2024 12:54:50 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- fix(workspace): Correct published paths (filip.dupanovic@gmail.com)
|
|
14
|
+
|
|
7
15
|
## 0.4.0
|
|
8
16
|
|
|
9
17
|
Fri, 03 May 2024 10:44:32 GMT
|
package/package.json
CHANGED
|
@@ -1,20 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langri-sha/projen-project",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"prepublishOnly": "rm -rf lib; tsc --project tsconfig.build.json"
|
|
9
|
+
},
|
|
7
10
|
"dependencies": {
|
|
11
|
+
"@langri-sha/projen-editorconfig": "0.3.1",
|
|
12
|
+
"@langri-sha/projen-lint-synthesized": "0.2.2",
|
|
8
13
|
"beachball": "2.43.1",
|
|
9
|
-
"ramda": "0.29.1"
|
|
10
|
-
"@langri-sha/projen-editorconfig": "0.3.0",
|
|
11
|
-
"@langri-sha/projen-lint-synthesized": "0.2.0"
|
|
14
|
+
"ramda": "0.29.1"
|
|
12
15
|
},
|
|
13
16
|
"devDependencies": {
|
|
17
|
+
"@langri-sha/jest-test": "0.7.1",
|
|
18
|
+
"@langri-sha/tsconfig": "0.9.0",
|
|
14
19
|
"@types/ramda": "0.29.12",
|
|
15
|
-
"projen": "0.81.1"
|
|
16
|
-
"@langri-sha/jest-test": "0.7.0",
|
|
17
|
-
"@langri-sha/tsconfig": "0.9.0"
|
|
20
|
+
"projen": "0.81.1"
|
|
18
21
|
},
|
|
19
22
|
"peerDependencies": {
|
|
20
23
|
"projen": "^0.81.1",
|
|
@@ -23,6 +26,5 @@
|
|
|
23
26
|
"publishConfig": {
|
|
24
27
|
"access": "public"
|
|
25
28
|
},
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
}
|
|
29
|
+
"types": "lib/index.d.ts"
|
|
30
|
+
}
|