solid-slider 1.3.14 → 1.3.15

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -220,6 +220,7 @@ Thie library exports it's own CSS which is the basic Keen-Slider implementation
220
220
  - 1.3.12 - Patched slider to reactively update on updating children
221
221
  - 1.3.13 - Incorporated adaptiveHeight plugin (thanks [joeygrable94](https://www.github.com/joeygrable94))
222
222
  - 1.3.14 - Patched npm packaging issue (thanks [joeygrable94 ](https://www.github.com/joeygrable94))
223
+ - 1.3.15 - Updated to Solid 1.7.11
223
224
 
224
225
  ## Keen Options API
225
226
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solid-slider",
3
- "version": "1.3.14",
3
+ "version": "1.3.15",
4
4
  "description": "A slider utility for SolidJS.",
5
5
  "author": "David Di Biase",
6
6
  "repository": {
@@ -12,6 +12,10 @@
12
12
  "url": "https://github.com/davedbase/solid-slider/issues"
13
13
  },
14
14
  "homepage": "https://github.com/davedbase/solid-slider#readme",
15
+ "scripts": {
16
+ "format": "prettier -w \"src/**/*.{js,ts,json,css,tsx,jsx}\"",
17
+ "build": "rollup -c rollup.config.js && cp src/slider.css dist/slider.css && cp src/plugins/adaptiveHeight.css dist/adaptiveHeight/style.css && cp src/plugins/adaptiveWidth.css dist/adaptiveWidth/style.css"
18
+ },
15
19
  "type": "module",
16
20
  "main": "dist/index/index.common.js",
17
21
  "module": "dist/index/index.module.js",
@@ -69,17 +73,13 @@
69
73
  "@solid-primitives/timer": "^1.3.4",
70
74
  "@solid-primitives/utils": "^4.0.0",
71
75
  "keen-slider": "^6.8.3",
72
- "solid-js": "^1.6.0"
76
+ "solid-js": "^1.7.11"
73
77
  },
74
78
  "devDependencies": {
75
79
  "esbuild-plugin-solid": "^0.4.2",
76
80
  "prettier": "^2.7.1",
77
81
  "rollup": "^2.79.1",
78
82
  "rollup-preset-solid": "^1.4.0",
79
- "typescript": "^4.5.5"
80
- },
81
- "scripts": {
82
- "format": "prettier -w \"src/**/*.{js,ts,json,css,tsx,jsx}\"",
83
- "build": "rollup -c rollup.config.js && cp src/slider.css dist/slider.css && cp src/plugins/adaptiveHeight.css dist/adaptiveHeight/style.css && cp src/plugins/adaptiveWidth.css dist/adaptiveWidth/style.css"
83
+ "typescript": "^4.9.3"
84
84
  }
85
- }
85
+ }