@ctx-core/auth0-ui 12.1.16 → 12.1.17

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @ctx-core/auth0-ui
2
2
 
3
+ ## 12.1.17
4
+
5
+ ### Patch Changes
6
+
7
+ - .js + .d.ts instead of .ts
8
+ - Updated dependencies
9
+ - @ctx-core/auth0@28.0.8
10
+ - @ctx-core/auth0-management@7.0.11
11
+ - @ctx-core/dialog@18.0.6
12
+ - @ctx-core/dom@11.1.2
13
+ - @ctx-core/error@11.1.18
14
+ - @ctx-core/fetch@11.0.104
15
+ - @ctx-core/function@20.2.21
16
+ - @ctx-core/http@9.0.19
17
+ - @ctx-core/jwt@10.0.47
18
+ - @ctx-core/logger@9.0.41
19
+ - @ctx-core/svelte@10.1.2
20
+
3
21
  ## 12.1.16
4
22
 
5
23
  ### Patch Changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/auth0-ui",
3
- "version": "12.1.16",
3
+ "version": "12.1.17",
4
4
  "description": "ctx-core auth0 ui component & express endpoints",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,40 +17,39 @@
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
- "svelte": "./dist/index.js",
21
- "types": "./dist/index.d.ts",
20
+ "svelte": "./lib/index.js",
21
+ "types": "./lib/index.d.ts",
22
22
  "exports": {
23
23
  ".": {
24
- "import": "./dist/index.js"
24
+ "import": "./lib/index.js"
25
25
  },
26
26
  "./package.json": "./package.json"
27
27
  },
28
28
  "dependencies": {
29
- "@ctx-core/auth0": "^28.0.0",
30
- "@ctx-core/auth0-management": "^7.0.10",
31
- "@ctx-core/dialog": "^18.0.0",
29
+ "@ctx-core/auth0": "^28.0.8",
30
+ "@ctx-core/auth0-management": "^7.0.11",
31
+ "@ctx-core/dialog": "^18.0.6",
32
32
  "@ctx-core/dialog-ui-svelte": "^1.0.10",
33
- "@ctx-core/dom": "^11.0.48",
34
- "@ctx-core/error": "^11.1.17",
35
- "@ctx-core/fetch": "^11.0.102",
36
- "@ctx-core/function": "^20.2.20",
37
- "@ctx-core/http": "^9.0.18",
38
- "@ctx-core/jwt": "^10.0.46",
39
- "@ctx-core/logger": "^9.0.40",
33
+ "@ctx-core/dom": "^11.1.2",
34
+ "@ctx-core/error": "^11.1.18",
35
+ "@ctx-core/fetch": "^11.0.104",
36
+ "@ctx-core/function": "^20.2.21",
37
+ "@ctx-core/http": "^9.0.19",
38
+ "@ctx-core/jwt": "^10.0.47",
39
+ "@ctx-core/logger": "^9.0.41",
40
40
  "@ctx-core/object": "^22.0.8",
41
- "@ctx-core/svelte": "^10.0.50",
41
+ "@ctx-core/svelte": "^10.1.2",
42
42
  "@swc/cli": "^0.1.55",
43
- "@swc/core": "^1.2.121",
43
+ "@swc/core": "^1.2.124",
44
44
  "auth0-js": "^9.18.0",
45
45
  "jsonwebtoken": "^8.5.1",
46
46
  "polka": "next"
47
47
  },
48
48
  "devDependencies": {
49
- "@ctx-core/ctx-core-package-tools": "^8.0.96",
50
49
  "@sveltejs/adapter-auto": "next",
51
50
  "@sveltejs/kit": "next",
52
51
  "@types/jsonwebtoken": "^8.5.6",
53
- "@types/trouter": "^3.1.0",
52
+ "@types/trouter": "^3.1.1",
54
53
  "rimraf": "^3.0.2",
55
54
  "svelte": "^3.44.3",
56
55
  "svelte-check": "^2.2.11",
@@ -65,11 +64,11 @@
65
64
  },
66
65
  "scripts": {
67
66
  "build": "npm run compile",
68
- "clean": "rimraf dist && npm run clean_tsbuildinfo",
69
- "clean_tsbuildinfo": "rm -f tsconfig.tsbuildinfo && rm -f dist/**/*.d.ts",
70
- "compile": "npm run compile_source && npm run compile_declaration",
71
- "compile_source": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",
72
- "compile_declaration": "npm run clean_tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir dist",
67
+ "clean": "rimraf lib && npm run clean:tsbuildinfo",
68
+ "clean:tsbuildinfo": "rimraf tsconfig.tsbuildinfo && rimraf lib/**/*.d.ts",
69
+ "compile": "npm run compile:source && npm run compile:declaration",
70
+ "compile:source": "swc src --out-dir lib --copy-files --source-maps --config-file .swcrc",
71
+ "compile:declaration": "npm run clean:tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir lib",
73
72
  "exec": "$@"
74
73
  }
75
74
  }
package/svelte.config.js CHANGED
@@ -8,7 +8,7 @@ const config = {
8
8
  kit: {
9
9
  adapter: adapter(),
10
10
  package: {
11
- dir: 'dist',
11
+ dir: 'lib',
12
12
  emitTypes: false
13
13
  }
14
14
  }
package/tsconfig.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "allowSyntheticDefaultImports": true,
5
5
  "composite": true,
6
6
  "declaration": true,
7
- "declarationDir": "dist",
7
+ "declarationDir": "lib",
8
8
  "esModuleInterop": true,
9
9
  "importsNotUsedAsValues": "error",
10
10
  "lib": ["dom", "ESNext"],
@@ -17,7 +17,7 @@
17
17
  "noImplicitThis": true,
18
18
  "noUnusedLocals": true,
19
19
  "noUnusedParameters": true,
20
- "outDir": "dist",
20
+ "outDir": "lib",
21
21
  "resolveJsonModule": true,
22
22
  "rootDir": ".",
23
23
  "sourceMap": true,
@@ -31,7 +31,7 @@
31
31
  ]
32
32
  },
33
33
  "exclude": [
34
- "dist",
34
+ "lib",
35
35
  "node_modules"
36
36
  ],
37
37
  "references": []
package/COMMIT_EDITMSG DELETED
@@ -1 +0,0 @@
1
-