@orchestrator-ui/tsconfig 1.2.1 → 1.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.
@@ -1,15 +1,15 @@
1
1
 
2
- > @orchestrator-ui/tsconfig@1.2.1 build
2
+ > @orchestrator-ui/tsconfig@1.3.1 build
3
3
  > tsup base.json nextjs.json tsconfig.json --format esm --dts
4
4
 
5
5
  CLI Building entry: base.json, nextjs.json
6
- CLI tsup v8.3.5
6
+ CLI tsup v8.5.0
7
7
  CLI Target: node16
8
8
  ESM Build start
9
9
  ESM dist/base.mjs 766.00 B
10
10
  ESM dist/nextjs.mjs 699.00 B
11
- ESM ⚡️ Build success in 29ms
11
+ ESM ⚡️ Build success in 23ms
12
12
  DTS Build start
13
- DTS ⚡️ Build success in 1098ms
13
+ DTS ⚡️ Build success in 1340ms
14
14
  DTS dist/base.d.mts 758.00 B
15
15
  DTS dist/nextjs.d.mts 674.00 B
package/CHANGELOG.md CHANGED
@@ -1,68 +1,80 @@
1
1
  # @orchestrator-ui/tsconfig
2
2
 
3
+ ## 1.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 7e81964: Switch to Trusted publishers
8
+
9
+ ## 1.3.0
10
+
11
+ ### Minor Changes
12
+
13
+ - e732016: Updates depencencies to latest minor versions
14
+
3
15
  ## 1.2.1
4
16
 
5
17
  ### Patch Changes
6
18
 
7
- - 56e2537: Fixes rights issue in github action
8
- - b7fe3ee: Adds github action permission to publish with provenance
19
+ - 56e2537: Fixes rights issue in github action
20
+ - b7fe3ee: Adds github action permission to publish with provenance
9
21
 
10
22
  ## 1.2.0
11
23
 
12
24
  ### Minor Changes
13
25
 
14
- - 85fca33: Adds npm provenance flag
26
+ - 85fca33: Adds npm provenance flag
15
27
 
16
28
  ## 1.1.1
17
29
 
18
30
  ### Patch Changes
19
31
 
20
- - 09f3e09: Fixes markdown in README files
32
+ - 09f3e09: Fixes markdown in README files
21
33
 
22
34
  ## 1.1.0
23
35
 
24
36
  ### Minor Changes
25
37
 
26
- - c122786: Adds README files to be displayed on NPM. Adds Apache 2.0 license.
38
+ - c122786: Adds README files to be displayed on NPM. Adds Apache 2.0 license.
27
39
 
28
40
  ## 1.0.0
29
41
 
30
42
  ### Major Changes
31
43
 
32
- - 507399b: R1 Release
44
+ - 507399b: R1 Release
33
45
 
34
46
  ## 0.1.2
35
47
 
36
48
  ### Patch Changes
37
49
 
38
- - 6597ac1: Test release after adding absolute imports (issue 414)
50
+ - 6597ac1: Test release after adding absolute imports (issue 414)
39
51
 
40
52
  ## 0.1.1
41
53
 
42
54
  ### Patch Changes
43
55
 
44
- - 6d680f6: Test release before adding absolute imports (issue 414)
56
+ - 6d680f6: Test release before adding absolute imports (issue 414)
45
57
 
46
58
  ## 0.1.0
47
59
 
48
60
  ### Minor Changes
49
61
 
50
- - 6c4cb21: Added translation setup and next-inl configuration. Translation strings are now available when using the useTranslations hook. For more on how to add translations refer to apps/wfo-ui/translations/README.md
62
+ - 6c4cb21: Added translation setup and next-inl configuration. Translation strings are now available when using the useTranslations hook. For more on how to add translations refer to apps/wfo-ui/translations/README.md
51
63
 
52
64
  ## 0.0.3
53
65
 
54
66
  ### Patch Changes
55
67
 
56
- - c780503: Initial release
68
+ - c780503: Initial release
57
69
 
58
70
  ## 0.0.2
59
71
 
60
72
  ### Patch Changes
61
73
 
62
- - 0cef169: Splitted WFO in separate packages
74
+ - 0cef169: Splitted WFO in separate packages
63
75
 
64
76
  ## 0.0.1
65
77
 
66
78
  ### Patch Changes
67
79
 
68
- - Converted tsconfig and eslint to standalone NPM package
80
+ - Converted tsconfig and eslint to standalone NPM package
package/package.json CHANGED
@@ -23,10 +23,13 @@
23
23
  "dev": "npm run build -- --watch"
24
24
  },
25
25
  "main": "./dist/",
26
- "version": "1.2.1",
26
+ "version": "1.3.1",
27
27
  "license": "Apache-2.0",
28
28
  "publishConfig": {
29
29
  "access": "public",
30
30
  "provenance": true
31
+ },
32
+ "dependencies": {
33
+ "tsup": "^8.5.0"
31
34
  }
32
35
  }