@ctx-core/scroll 14.0.2 → 14.0.7

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,50 @@
1
1
  # @ctx-core/scroll
2
2
 
3
+ ## 14.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: error TS6059: \* is not under 'rootDir': package.json: types: ./dist/index.d.ts
8
+ - Updated dependencies
9
+ - @ctx-core/object@22.0.8
10
+ - @ctx-core/store@27.0.55
11
+
12
+ ## 14.0.6
13
+
14
+ ### Patch Changes
15
+
16
+ - tsconfig.json: "target": "ES2021"
17
+ - Updated dependencies
18
+ - @ctx-core/object@22.0.7
19
+ - @ctx-core/store@27.0.54
20
+
21
+ ## 14.0.5
22
+
23
+ ### Patch Changes
24
+
25
+ - package.json: "types": "./src/index.ts": better editing experience
26
+ - Updated dependencies
27
+ - @ctx-core/object@22.0.6
28
+ - @ctx-core/store@27.0.53
29
+
30
+ ## 14.0.4
31
+
32
+ ### Patch Changes
33
+
34
+ - fix: build
35
+ - Updated dependencies
36
+ - @ctx-core/object@22.0.5
37
+ - @ctx-core/store@27.0.52
38
+
39
+ ## 14.0.3
40
+
41
+ ### Patch Changes
42
+
43
+ - \*.d.ts export
44
+ - Updated dependencies
45
+ - @ctx-core/object@22.0.4
46
+ - @ctx-core/store@27.0.51
47
+
3
48
  ## 14.0.2
4
49
 
5
50
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/scroll",
3
- "version": "14.0.2",
3
+ "version": "14.0.7",
4
4
  "description": "ctx-core scroll",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,19 +17,19 @@
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
+ "types": "./dist/index.d.ts",
20
21
  "exports": {
21
22
  ".": {
22
- "import": "./dist/index.js",
23
- "types": "./src/index.ts"
23
+ "import": "./dist/index.js"
24
24
  },
25
25
  "./package.json": "./package.json"
26
26
  },
27
27
  "dependencies": {
28
- "@ctx-core/object": "^22.0.3",
29
- "@ctx-core/store": "^27.0.50"
28
+ "@ctx-core/object": "^22.0.8",
29
+ "@ctx-core/store": "^27.0.55"
30
30
  },
31
31
  "devDependencies": {
32
- "@ctx-core/ctx-core-package-tools": "^8.0.90",
32
+ "@ctx-core/ctx-core-package-tools": "^8.0.95",
33
33
  "@swc/cli": "^0.1.55",
34
34
  "@swc/core": "^1.2.120",
35
35
  "rimraf": "^3.0.2",
@@ -42,7 +42,8 @@
42
42
  "svelte": "./dist/index.js",
43
43
  "scripts": {
44
44
  "build": "npm run compile",
45
- "clean": "rimraf dist",
45
+ "clean": "rimraf dist && npm run clean_tsbuildinfo",
46
+ "clean_tsbuildinfo": "rm -f tsconfig.tsbuildinfo && rm -f dist/**/*.d.ts",
46
47
  "compile": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",
47
48
  "exec": "$@"
48
49
  }
package/tsconfig.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "compileOnSave": true,
3
3
  "compilerOptions": {
4
- "target": "ES2020",
4
+ "target": "ES2021",
5
5
  "composite": true,
6
6
  "declaration": true,
7
7
  "sourceMap": true,
@@ -21,9 +21,8 @@
21
21
  "../../node_modules/@types",
22
22
  "node_modules/@types"
23
23
  ],
24
- "rootDir": ".",
24
+ "rootDir": "src",
25
25
  "outDir": "dist",
26
- "mapRoot": "",
27
26
  "declarationDir": "dist",
28
27
  "lib": ["dom", "ESNext"],
29
28
  "importsNotUsedAsValues": "error",