@orchestrator-ui/tsconfig 1.1.1 → 1.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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +19 -0
- package/package.json +7 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
|
|
2
|
-
> @orchestrator-ui/tsconfig@1.
|
|
2
|
+
> @orchestrator-ui/tsconfig@1.3.0 build
|
|
3
3
|
> tsup base.json nextjs.json tsconfig.json --format esm --dts
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: base.json, nextjs.json
|
|
6
|
-
[34mCLI[39m tsup v8.0
|
|
6
|
+
[34mCLI[39m tsup v8.5.0
|
|
7
7
|
[34mCLI[39m Target: node16
|
|
8
8
|
[34mESM[39m Build start
|
|
9
9
|
[32mESM[39m [1mdist/base.mjs [22m[32m766.00 B[39m
|
|
10
10
|
[32mESM[39m [1mdist/nextjs.mjs [22m[32m699.00 B[39m
|
|
11
|
-
[32mESM[39m ⚡️ Build success in
|
|
11
|
+
[32mESM[39m ⚡️ Build success in 35ms
|
|
12
12
|
[34mDTS[39m Build start
|
|
13
|
-
[32mDTS[39m ⚡️ Build success in
|
|
13
|
+
[32mDTS[39m ⚡️ Build success in 1470ms
|
|
14
14
|
[32mDTS[39m [1mdist/base.d.mts [22m[32m758.00 B[39m
|
|
15
15
|
[32mDTS[39m [1mdist/nextjs.d.mts [22m[32m674.00 B[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @orchestrator-ui/tsconfig
|
|
2
2
|
|
|
3
|
+
## 1.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e732016: Updates depencencies to latest minor versions
|
|
8
|
+
|
|
9
|
+
## 1.2.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 56e2537: Fixes rights issue in github action
|
|
14
|
+
- b7fe3ee: Adds github action permission to publish with provenance
|
|
15
|
+
|
|
16
|
+
## 1.2.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- 85fca33: Adds npm provenance flag
|
|
21
|
+
|
|
3
22
|
## 1.1.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "https://github.com/workfloworchestrator/orchestrator-ui-library.git"
|
|
11
|
+
"url": "git+https://github.com/workfloworchestrator/orchestrator-ui-library.git"
|
|
12
12
|
},
|
|
13
13
|
"homepage": "https://www.workfloworchestrator.org",
|
|
14
14
|
"keywords": [
|
|
@@ -23,9 +23,13 @@
|
|
|
23
23
|
"dev": "npm run build -- --watch"
|
|
24
24
|
},
|
|
25
25
|
"main": "./dist/",
|
|
26
|
-
"version": "1.
|
|
26
|
+
"version": "1.3.0",
|
|
27
27
|
"license": "Apache-2.0",
|
|
28
28
|
"publishConfig": {
|
|
29
|
-
"access": "public"
|
|
29
|
+
"access": "public",
|
|
30
|
+
"provenance": true
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"tsup": "^8.5.0"
|
|
30
34
|
}
|
|
31
35
|
}
|