@ctx-core/window 11.1.7 → 11.1.11

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,45 @@
1
1
  # @ctx-core/window
2
2
 
3
+ ## 11.1.11
4
+
5
+ ### Patch Changes
6
+
7
+ - package.json: - "main": explicitly not support cjs
8
+ - Updated dependencies
9
+ - @ctx-core/dom@11.0.39
10
+ - @ctx-core/store@27.0.45
11
+
12
+ ## 11.1.10
13
+
14
+ ### Patch Changes
15
+
16
+ - update dependencies
17
+ - Updated dependencies
18
+ - @ctx-core/dom@11.0.38
19
+ - @ctx-core/store@27.0.44
20
+
21
+ ## 11.1.9
22
+
23
+ ### Patch Changes
24
+
25
+ - @swc/core: ^1.2.117 -> ^1.2.118
26
+ - Updated dependencies
27
+ - @ctx-core/dom@11.0.37
28
+ - @ctx-core/function@20.2.10
29
+ - @ctx-core/object@21.0.29
30
+ - @ctx-core/store@27.0.43
31
+
32
+ ## 11.1.8
33
+
34
+ ### Patch Changes
35
+
36
+ - @swc/core: ^1.2.116 -> ^1.2.117
37
+ - Updated dependencies
38
+ - @ctx-core/dom@11.0.36
39
+ - @ctx-core/function@20.2.9
40
+ - @ctx-core/object@21.0.28
41
+ - @ctx-core/store@27.0.42
42
+
3
43
  ## 11.1.7
4
44
 
5
45
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/window",
3
- "version": "11.1.7",
3
+ "version": "11.1.11",
4
4
  "description": "ctx-core window",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,7 +17,6 @@
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
- "main": "./dist/index.js",
21
20
  "module": "./dist/index.js",
22
21
  "types": "./src/index.ts",
23
22
  "exports": {
@@ -28,16 +27,16 @@
28
27
  "./package.json": "./package.json"
29
28
  },
30
29
  "dependencies": {
31
- "@ctx-core/dom": "^11.0.35",
32
- "@ctx-core/function": "^20.2.8",
33
- "@ctx-core/object": "^21.0.27",
34
- "@ctx-core/store": "^27.0.41",
30
+ "@ctx-core/dom": "^11.0.39",
31
+ "@ctx-core/function": "^20.2.12",
32
+ "@ctx-core/object": "^21.0.30",
33
+ "@ctx-core/store": "^27.0.45",
35
34
  "svelte": "3.44.2"
36
35
  },
37
36
  "devDependencies": {
38
- "@ctx-core/dev-tools": "^7.2.5",
37
+ "@ctx-core/dev-tools": "^7.2.9",
39
38
  "@swc/cli": "^0.1.52",
40
- "@swc/core": "^1.2.116",
39
+ "@swc/core": "^1.2.118",
41
40
  "typescript": "next"
42
41
  },
43
42
  "publishConfig": {
package/tsconfig.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "compileOnSave": true,
3
3
  "compilerOptions": {
4
- "target": "ES2019",
4
+ "target": "ES2020",
5
5
  "composite": true,
6
6
  "declaration": true,
7
7
  "sourceMap": true,