@orchestrator-ui/tsconfig 1.2.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.
@@ -1,15 +1,15 @@
1
1
 
2
- > @orchestrator-ui/tsconfig@1.2.1 build
2
+ > @orchestrator-ui/tsconfig@1.3.0 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 35ms
12
12
  DTS Build start
13
- DTS ⚡️ Build success in 1098ms
13
+ DTS ⚡️ Build success in 1470ms
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,74 @@
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
+
3
9
  ## 1.2.1
4
10
 
5
11
  ### Patch Changes
6
12
 
7
- - 56e2537: Fixes rights issue in github action
8
- - b7fe3ee: Adds github action permission to publish with provenance
13
+ - 56e2537: Fixes rights issue in github action
14
+ - b7fe3ee: Adds github action permission to publish with provenance
9
15
 
10
16
  ## 1.2.0
11
17
 
12
18
  ### Minor Changes
13
19
 
14
- - 85fca33: Adds npm provenance flag
20
+ - 85fca33: Adds npm provenance flag
15
21
 
16
22
  ## 1.1.1
17
23
 
18
24
  ### Patch Changes
19
25
 
20
- - 09f3e09: Fixes markdown in README files
26
+ - 09f3e09: Fixes markdown in README files
21
27
 
22
28
  ## 1.1.0
23
29
 
24
30
  ### Minor Changes
25
31
 
26
- - c122786: Adds README files to be displayed on NPM. Adds Apache 2.0 license.
32
+ - c122786: Adds README files to be displayed on NPM. Adds Apache 2.0 license.
27
33
 
28
34
  ## 1.0.0
29
35
 
30
36
  ### Major Changes
31
37
 
32
- - 507399b: R1 Release
38
+ - 507399b: R1 Release
33
39
 
34
40
  ## 0.1.2
35
41
 
36
42
  ### Patch Changes
37
43
 
38
- - 6597ac1: Test release after adding absolute imports (issue 414)
44
+ - 6597ac1: Test release after adding absolute imports (issue 414)
39
45
 
40
46
  ## 0.1.1
41
47
 
42
48
  ### Patch Changes
43
49
 
44
- - 6d680f6: Test release before adding absolute imports (issue 414)
50
+ - 6d680f6: Test release before adding absolute imports (issue 414)
45
51
 
46
52
  ## 0.1.0
47
53
 
48
54
  ### Minor Changes
49
55
 
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
56
+ - 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
57
 
52
58
  ## 0.0.3
53
59
 
54
60
  ### Patch Changes
55
61
 
56
- - c780503: Initial release
62
+ - c780503: Initial release
57
63
 
58
64
  ## 0.0.2
59
65
 
60
66
  ### Patch Changes
61
67
 
62
- - 0cef169: Splitted WFO in separate packages
68
+ - 0cef169: Splitted WFO in separate packages
63
69
 
64
70
  ## 0.0.1
65
71
 
66
72
  ### Patch Changes
67
73
 
68
- - Converted tsconfig and eslint to standalone NPM package
74
+ - 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.0",
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
  }