@ctx-core/scroll 14.0.0 → 14.0.5

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,59 @@
1
1
  # @ctx-core/scroll
2
2
 
3
+ ## 14.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - package.json: "types": "./src/index.ts": better editing experience
8
+ - Updated dependencies
9
+ - @ctx-core/object@22.0.6
10
+ - @ctx-core/store@27.0.53
11
+
12
+ ## 14.0.4
13
+
14
+ ### Patch Changes
15
+
16
+ - fix: build
17
+ - Updated dependencies
18
+ - @ctx-core/object@22.0.5
19
+ - @ctx-core/store@27.0.52
20
+
21
+ ## 14.0.3
22
+
23
+ ### Patch Changes
24
+
25
+ - \*.d.ts export
26
+ - Updated dependencies
27
+ - @ctx-core/object@22.0.4
28
+ - @ctx-core/store@27.0.51
29
+
30
+ ## 14.0.2
31
+
32
+ ### Patch Changes
33
+
34
+ - fix: tsconfig.json: "rootDir": "."
35
+ - Updated dependencies
36
+ - @ctx-core/object@22.0.3
37
+ - @ctx-core/store@27.0.50
38
+
39
+ ## 14.0.1
40
+
41
+ ### Patch Changes
42
+
43
+ - fix: package.json: exports
44
+ - Updated dependencies
45
+ - @ctx-core/object@22.0.2
46
+ - @ctx-core/store@27.0.49
47
+
48
+ ## 14.0.1
49
+
50
+ ### Patch Changes
51
+
52
+ - package.json: svelte: ./dist/index.js
53
+ - Updated dependencies
54
+ - @ctx-core/object@22.0.1
55
+ - @ctx-core/store@27.0.48
56
+
3
57
  ## 14.0.0
4
58
 
5
59
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/scroll",
3
- "version": "14.0.0",
3
+ "version": "14.0.5",
4
4
  "description": "ctx-core scroll",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -12,35 +12,38 @@
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "https://github.com/ctx-core/scroll/issues"
15
+ "url": "https://github.com/ctx-core/scroll.git"
16
16
  },
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
+ "types": "./src/index.ts",
20
21
  "exports": {
21
22
  ".": {
22
- "types": "./src/index.ts",
23
23
  "import": "./dist/index.js"
24
24
  },
25
25
  "./package.json": "./package.json"
26
26
  },
27
27
  "dependencies": {
28
- "@ctx-core/object": "^22.0.0",
29
- "@ctx-core/store": "^27.0.46"
28
+ "@ctx-core/object": "^22.0.6",
29
+ "@ctx-core/store": "^27.0.53"
30
30
  },
31
31
  "devDependencies": {
32
- "@ctx-core/ctx-core-package-tools": "^8.0.85",
32
+ "@ctx-core/ctx-core-package-tools": "^8.0.93",
33
33
  "@swc/cli": "^0.1.55",
34
34
  "@swc/core": "^1.2.120",
35
+ "rimraf": "^3.0.2",
35
36
  "typescript": "next"
36
37
  },
37
38
  "publishConfig": {
38
39
  "access": "public",
39
40
  "cache": "~/.npm"
40
41
  },
42
+ "svelte": "./dist/index.js",
41
43
  "scripts": {
42
44
  "build": "npm run compile",
43
- "clean": "rm -rf dist",
45
+ "clean": "rimraf dist && npm run clean_tsbuildinfo",
46
+ "clean_tsbuildinfo": "rm -f tsconfig.tsbuildinfo && rm -f dist/**/*.d.ts",
44
47
  "compile": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",
45
48
  "exec": "$@"
46
49
  }
package/tsconfig.json CHANGED
@@ -23,7 +23,6 @@
23
23
  ],
24
24
  "rootDir": "src",
25
25
  "outDir": "dist",
26
- "mapRoot": "",
27
26
  "declarationDir": "dist",
28
27
  "lib": ["dom", "ESNext"],
29
28
  "importsNotUsedAsValues": "error",