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