@ctx-core/window 13.0.0 → 13.0.6

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,47 @@
1
1
  # @ctx-core/window
2
2
 
3
+ ## 13.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - .js + .d.ts instead of .ts
8
+ - Updated dependencies
9
+ - @ctx-core/dom@11.1.2
10
+ - @ctx-core/function@20.2.21
11
+ - @ctx-core/nanostores@0.3.1
12
+
13
+ ## 13.0.5
14
+
15
+ ### Patch Changes
16
+
17
+ - update dependencies
18
+
19
+ ## 13.0.4
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+ - @ctx-core/nanostores@0.3.0
25
+
26
+ ## 13.0.3
27
+
28
+ ### Patch Changes
29
+
30
+ - update dependencies
31
+
32
+ ## 13.0.2
33
+
34
+ ### Patch Changes
35
+
36
+ - Updated dependencies
37
+ - @ctx-core/nanostores@0.2.0
38
+
39
+ ## 13.0.1
40
+
41
+ ### Patch Changes
42
+
43
+ - update dependencies
44
+
3
45
  ## 13.0.0
4
46
 
5
47
  ### Major 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/window",
3
- "version": "13.0.0",
3
+ "version": "13.0.6",
4
4
  "description": "ctx-core window",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,22 +17,22 @@
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
- "types": "./dist/index.d.ts",
20
+ "types": "./lib/index.d.ts",
21
21
  "exports": {
22
22
  ".": {
23
- "import": "./dist/index.js"
23
+ "import": "./lib/index.js"
24
24
  },
25
25
  "./package.json": "./package.json"
26
26
  },
27
27
  "dependencies": {
28
- "@ctx-core/dom": "^11.0.48",
29
- "@ctx-core/function": "^20.2.20",
30
- "@ctx-core/nanostores": "^0.1.0",
28
+ "@ctx-core/dom": "^11.1.2",
29
+ "@ctx-core/function": "^20.2.21",
30
+ "@ctx-core/nanostores": "^0.3.1",
31
31
  "@ctx-core/object": "^22.0.8"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@swc/cli": "^0.1.55",
35
- "@swc/core": "^1.2.121",
35
+ "@swc/core": "^1.2.124",
36
36
  "rimraf": "^3.0.2",
37
37
  "typescript": "next"
38
38
  },
@@ -40,14 +40,14 @@
40
40
  "access": "public",
41
41
  "cache": "~/.npm"
42
42
  },
43
- "svelte": "./dist/index.js",
43
+ "svelte": "./lib/index.js",
44
44
  "scripts": {
45
45
  "build": "npm run compile",
46
- "clean": "rimraf dist && npm run clean_tsbuildinfo",
47
- "clean_tsbuildinfo": "rm -f tsconfig.tsbuildinfo && rm -f dist/**/*.d.ts",
48
- "compile": "npm run compile_source && npm run compile_declaration",
49
- "compile_source": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",
50
- "compile_declaration": "npm run clean_tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir dist",
46
+ "clean": "rimraf lib && npm run clean:tsbuildinfo",
47
+ "clean:tsbuildinfo": "rimraf tsconfig.tsbuildinfo && rimraf lib/**/*.d.ts",
48
+ "compile": "npm run compile:source && npm run compile:declaration",
49
+ "compile:source": "swc src --out-dir lib --copy-files --source-maps --config-file .swcrc",
50
+ "compile:declaration": "npm run clean:tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir lib",
51
51
  "exec": "$@"
52
52
  }
53
53
  }
package/tsconfig.json CHANGED
@@ -22,15 +22,15 @@
22
22
  "node_modules/@types"
23
23
  ],
24
24
  "rootDir": "src",
25
- "outDir": "dist",
26
- "declarationDir": "dist",
25
+ "outDir": "lib",
26
+ "declarationDir": "lib",
27
27
  "lib": ["dom", "ESNext"],
28
28
  "importsNotUsedAsValues": "error",
29
29
  "strict": true
30
30
  },
31
31
  "exclude": [
32
32
  "node_modules",
33
- "dist"
33
+ "lib"
34
34
  ],
35
35
  "references": []
36
36
  }
package/COMMIT_EDITMSG DELETED
@@ -1 +0,0 @@
1
-