@ctx-core/scroll 14.0.1 → 14.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 +54 -0
- package/package.json +9 -8
- package/tsconfig.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,59 @@
|
|
|
1
1
|
# @ctx-core/scroll
|
|
2
2
|
|
|
3
|
+
## 14.0.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- tsconfig.json: "target": "ES2021"
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @ctx-core/object@22.0.7
|
|
10
|
+
- @ctx-core/store@27.0.54
|
|
11
|
+
|
|
12
|
+
## 14.0.5
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- package.json: "types": "./src/index.ts": better editing experience
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @ctx-core/object@22.0.6
|
|
19
|
+
- @ctx-core/store@27.0.53
|
|
20
|
+
|
|
21
|
+
## 14.0.4
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- fix: build
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @ctx-core/object@22.0.5
|
|
28
|
+
- @ctx-core/store@27.0.52
|
|
29
|
+
|
|
30
|
+
## 14.0.3
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- \*.d.ts export
|
|
35
|
+
- Updated dependencies
|
|
36
|
+
- @ctx-core/object@22.0.4
|
|
37
|
+
- @ctx-core/store@27.0.51
|
|
38
|
+
|
|
39
|
+
## 14.0.2
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- fix: tsconfig.json: "rootDir": "."
|
|
44
|
+
- Updated dependencies
|
|
45
|
+
- @ctx-core/object@22.0.3
|
|
46
|
+
- @ctx-core/store@27.0.50
|
|
47
|
+
|
|
48
|
+
## 14.0.1
|
|
49
|
+
|
|
50
|
+
### Patch Changes
|
|
51
|
+
|
|
52
|
+
- fix: package.json: exports
|
|
53
|
+
- Updated dependencies
|
|
54
|
+
- @ctx-core/object@22.0.2
|
|
55
|
+
- @ctx-core/store@27.0.49
|
|
56
|
+
|
|
3
57
|
## 14.0.1
|
|
4
58
|
|
|
5
59
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ctx-core/scroll",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.6",
|
|
4
4
|
"description": "ctx-core scroll",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ctx-core",
|
|
@@ -12,24 +12,24 @@
|
|
|
12
12
|
},
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
|
-
"url": "https://github.com/ctx-core/scroll
|
|
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.
|
|
29
|
-
"@ctx-core/store": "^27.0.
|
|
28
|
+
"@ctx-core/object": "^22.0.7",
|
|
29
|
+
"@ctx-core/store": "^27.0.54"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@ctx-core/ctx-core-package-tools": "^8.0.
|
|
32
|
+
"@ctx-core/ctx-core-package-tools": "^8.0.94",
|
|
33
33
|
"@swc/cli": "^0.1.55",
|
|
34
34
|
"@swc/core": "^1.2.120",
|
|
35
35
|
"rimraf": "^3.0.2",
|
|
@@ -39,10 +39,11 @@
|
|
|
39
39
|
"access": "public",
|
|
40
40
|
"cache": "~/.npm"
|
|
41
41
|
},
|
|
42
|
-
"svelte": "index.js",
|
|
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": "
|
|
4
|
+
"target": "ES2021",
|
|
5
5
|
"composite": true,
|
|
6
6
|
"declaration": true,
|
|
7
7
|
"sourceMap": true,
|
|
@@ -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",
|