@orchestrator-ui/tsconfig 1.3.0 → 1.4.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.3.0 build
2
+ > @orchestrator-ui/tsconfig@1.4.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.5.0
6
+ CLI tsup v8.5.1
7
7
  CLI Target: node16
8
8
  ESM Build start
9
- ESM dist/base.mjs 766.00 B
9
+ ESM dist/base.mjs 712.00 B
10
10
  ESM dist/nextjs.mjs 699.00 B
11
- ESM ⚡️ Build success in 35ms
11
+ ESM ⚡️ Build success in 19ms
12
12
  DTS Build start
13
- DTS ⚡️ Build success in 1470ms
14
- DTS dist/base.d.mts 758.00 B
13
+ DTS ⚡️ Build success in 1255ms
14
+ DTS dist/base.d.mts 706.00 B
15
15
  DTS dist/nextjs.d.mts 674.00 B
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @orchestrator-ui/tsconfig
2
2
 
3
+ ## 1.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 4eb77d6: Updates npm dependencies
8
+
9
+ ## 1.3.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 7e81964: Switch to Trusted publishers
14
+
3
15
  ## 1.3.0
4
16
 
5
17
  ### Minor Changes
package/base.json CHANGED
@@ -1,25 +1,23 @@
1
1
  {
2
- "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "Default",
4
- "compilerOptions": {
5
- "jsx": "react-jsx",
6
- "lib": ["ES2019"],
7
- "jsxImportSource": "@emotion/react",
8
- "composite": false,
9
- "declaration": true,
10
- "declarationMap": true,
11
- "esModuleInterop": true,
12
- "forceConsistentCasingInFileNames": true,
13
- "inlineSources": false,
14
- "isolatedModules": true,
15
- "moduleResolution": "node",
16
- "noUnusedLocals": false,
17
- "noUnusedParameters": false,
18
- "preserveWatchOutput": true,
19
- "skipLibCheck": true,
20
- "strict": true,
21
- "resolveJsonModule": true,
22
- "target": "ES6"
23
- },
24
- "exclude": ["node_modules"]
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "Default",
4
+ "compilerOptions": {
5
+ "composite": false,
6
+ "declaration": true,
7
+ "declarationMap": true,
8
+ "esModuleInterop": true,
9
+ "forceConsistentCasingInFileNames": true,
10
+ "inlineSources": false,
11
+ "isolatedModules": true,
12
+ "jsx": "react-jsx",
13
+ "jsxImportSource": "@emotion/react",
14
+ "lib": ["ES2019"],
15
+ "moduleResolution": "node",
16
+ "preserveWatchOutput": true,
17
+ "resolveJsonModule": true,
18
+ "skipLibCheck": true,
19
+ "strict": true,
20
+ "target": "ES6"
21
+ },
22
+ "exclude": ["node_modules"]
25
23
  }
package/dist/base.d.mts CHANGED
@@ -1,11 +1,6 @@
1
1
  var $schema = "https://json.schemastore.org/tsconfig";
2
2
  var display = "Default";
3
3
  var compilerOptions = {
4
- jsx: "react-jsx",
5
- lib: [
6
- "ES2019"
7
- ],
8
- jsxImportSource: "@emotion/react",
9
4
  composite: false,
10
5
  declaration: true,
11
6
  declarationMap: true,
@@ -13,13 +8,16 @@ var compilerOptions = {
13
8
  forceConsistentCasingInFileNames: true,
14
9
  inlineSources: false,
15
10
  isolatedModules: true,
11
+ jsx: "react-jsx",
12
+ jsxImportSource: "@emotion/react",
13
+ lib: [
14
+ "ES2019"
15
+ ],
16
16
  moduleResolution: "node",
17
- noUnusedLocals: false,
18
- noUnusedParameters: false,
19
17
  preserveWatchOutput: true,
18
+ resolveJsonModule: true,
20
19
  skipLibCheck: true,
21
20
  strict: true,
22
- resolveJsonModule: true,
23
21
  target: "ES6"
24
22
  };
25
23
  var exclude = [
package/dist/base.mjs CHANGED
@@ -2,9 +2,6 @@
2
2
  var $schema = "https://json.schemastore.org/tsconfig";
3
3
  var display = "Default";
4
4
  var compilerOptions = {
5
- jsx: "react-jsx",
6
- lib: ["ES2019"],
7
- jsxImportSource: "@emotion/react",
8
5
  composite: false,
9
6
  declaration: true,
10
7
  declarationMap: true,
@@ -12,13 +9,14 @@ var compilerOptions = {
12
9
  forceConsistentCasingInFileNames: true,
13
10
  inlineSources: false,
14
11
  isolatedModules: true,
12
+ jsx: "react-jsx",
13
+ jsxImportSource: "@emotion/react",
14
+ lib: ["ES2019"],
15
15
  moduleResolution: "node",
16
- noUnusedLocals: false,
17
- noUnusedParameters: false,
18
16
  preserveWatchOutput: true,
17
+ resolveJsonModule: true,
19
18
  skipLibCheck: true,
20
19
  strict: true,
21
- resolveJsonModule: true,
22
20
  target: "ES6"
23
21
  };
24
22
  var exclude = ["node_modules"];
package/nextjs.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
- "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "Next.js",
4
- "extends": "./base.json",
5
- "compilerOptions": {
6
- "plugins": [{ "name": "next" }],
7
- "allowJs": true,
8
- "declaration": false,
9
- "declarationMap": false,
10
- "incremental": true,
11
- "lib": ["dom", "dom.iterable", "esnext"],
12
- "module": "esnext",
13
- "noEmit": true,
14
- "resolveJsonModule": true,
15
- "target": "es2015"
16
- },
17
- "include": ["src", "next-env.d.ts"],
18
- "exclude": ["node_modules"]
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "Next.js",
4
+ "extends": "./base.json",
5
+ "compilerOptions": {
6
+ "plugins": [{ "name": "next" }],
7
+ "allowJs": true,
8
+ "declaration": false,
9
+ "declarationMap": false,
10
+ "incremental": true,
11
+ "lib": ["dom", "dom.iterable", "esnext"],
12
+ "module": "esnext",
13
+ "noEmit": true,
14
+ "resolveJsonModule": true,
15
+ "target": "es2015"
16
+ },
17
+ "include": ["src", "next-env.d.ts"],
18
+ "exclude": ["node_modules"]
19
19
  }
package/package.json CHANGED
@@ -1,35 +1,35 @@
1
1
  {
2
- "name": "@orchestrator-ui/tsconfig",
3
- "description": "Contains the tsconfig configuration used in the Workflow orchestrator frontend projects",
4
- "author": {
5
- "name": "Workflow Orchestrator Programme",
6
- "email": "workfloworchestrator.board@commonsconservancy.org",
7
- "url": "https://www.workfloworchestrator.org"
8
- },
9
- "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/workfloworchestrator/orchestrator-ui-library.git"
12
- },
13
- "homepage": "https://www.workfloworchestrator.org",
14
- "keywords": [
15
- "orchestrator",
16
- "workflow",
17
- "workflow orchestrator",
18
- "typescript",
19
- "tsconfig"
20
- ],
21
- "scripts": {
22
- "build": "tsup base.json nextjs.json tsconfig.json --format esm --dts",
23
- "dev": "npm run build -- --watch"
24
- },
25
- "main": "./dist/",
26
- "version": "1.3.0",
27
- "license": "Apache-2.0",
28
- "publishConfig": {
29
- "access": "public",
30
- "provenance": true
31
- },
32
- "dependencies": {
33
- "tsup": "^8.5.0"
34
- }
2
+ "name": "@orchestrator-ui/tsconfig",
3
+ "description": "Contains the tsconfig configuration used in the Workflow orchestrator frontend projects",
4
+ "author": {
5
+ "name": "Workflow Orchestrator Programme",
6
+ "email": "workfloworchestrator.board@commonsconservancy.org",
7
+ "url": "https://www.workfloworchestrator.org"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/workfloworchestrator/orchestrator-ui-library.git"
12
+ },
13
+ "homepage": "https://www.workfloworchestrator.org",
14
+ "keywords": [
15
+ "orchestrator",
16
+ "workflow",
17
+ "workflow orchestrator",
18
+ "typescript",
19
+ "tsconfig"
20
+ ],
21
+ "scripts": {
22
+ "build": "tsup base.json nextjs.json tsconfig.json --format esm --dts",
23
+ "dev": "npm run build -- --watch"
24
+ },
25
+ "main": "./dist/",
26
+ "version": "1.4.0",
27
+ "license": "Apache-2.0",
28
+ "publishConfig": {
29
+ "access": "public",
30
+ "provenance": true
31
+ },
32
+ "dependencies": {
33
+ "tsup": "^8.5.0"
34
+ }
35
35
  }
@@ -1,11 +1,11 @@
1
1
  {
2
- "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "React Library",
4
- "extends": "./base.json",
5
- "compilerOptions": {
6
- "jsx": "react-jsx",
7
- "lib": ["ES2015", "DOM"],
8
- "module": "ESNext",
9
- "target": "es6"
10
- }
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "React Library",
4
+ "extends": "./base.json",
5
+ "compilerOptions": {
6
+ "jsx": "react-jsx",
7
+ "lib": ["ES2015", "DOM"],
8
+ "module": "ESNext",
9
+ "target": "es6"
10
+ }
11
11
  }