@orchestrator-ui/tsconfig 1.1.0 → 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.0 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 23ms
11
+ ESM ⚡️ Build success in 29ms
12
12
  DTS Build start
13
- DTS ⚡️ Build success in 1597ms
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,49 +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
+
16
+ ## 1.1.1
17
+
18
+ ### Patch Changes
19
+
20
+ - 09f3e09: Fixes markdown in README files
21
+
3
22
  ## 1.1.0
4
23
 
5
24
  ### Minor Changes
6
25
 
7
- - 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.
8
27
 
9
28
  ## 1.0.0
10
29
 
11
30
  ### Major Changes
12
31
 
13
- - 507399b: R1 Release
32
+ - 507399b: R1 Release
14
33
 
15
34
  ## 0.1.2
16
35
 
17
36
  ### Patch Changes
18
37
 
19
- - 6597ac1: Test release after adding absolute imports (issue 414)
38
+ - 6597ac1: Test release after adding absolute imports (issue 414)
20
39
 
21
40
  ## 0.1.1
22
41
 
23
42
  ### Patch Changes
24
43
 
25
- - 6d680f6: Test release before adding absolute imports (issue 414)
44
+ - 6d680f6: Test release before adding absolute imports (issue 414)
26
45
 
27
46
  ## 0.1.0
28
47
 
29
48
  ### Minor Changes
30
49
 
31
- - 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
32
51
 
33
52
  ## 0.0.3
34
53
 
35
54
  ### Patch Changes
36
55
 
37
- - c780503: Initial release
56
+ - c780503: Initial release
38
57
 
39
58
  ## 0.0.2
40
59
 
41
60
  ### Patch Changes
42
61
 
43
- - 0cef169: Splitted WFO in separate packages
62
+ - 0cef169: Splitted WFO in separate packages
44
63
 
45
64
  ## 0.0.1
46
65
 
47
66
  ### Patch Changes
48
67
 
49
- - Converted tsconfig and eslint to standalone NPM package
68
+ - Converted tsconfig and eslint to standalone NPM package
package/README.md CHANGED
@@ -4,6 +4,6 @@ Contains the tsconfig configuration used in the [Workflow orchestrator][1] front
4
4
 
5
5
  This package is created from the [https://github.com/workfloworchestrator/example-orchestrator-ui/][2] repository and it's source can be found in [packages/tsconfig][3]
6
6
 
7
- 1:[https://www.workfloworchestrator.org]
8
- 2:[https://github.com/workfloworchestrator/orchestrator-ui-library]
9
- 3:[https://github.com/workfloworchestrator/orchestrator-ui-library/tree/main/packages/tsconfig]
7
+ [1]:[https://www.workfloworchestrator.org]
8
+ [2]:[https://github.com/workfloworchestrator/orchestrator-ui-library]
9
+ [3]:[https://github.com/workfloworchestrator/orchestrator-ui-library/tree/main/packages/tsconfig]
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.0",
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
  }