@css-hooks/solid 3.0.4 → 3.0.5-next.0

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/README.md CHANGED
@@ -1,13 +1,11 @@
1
- <p align="center">
2
- <a href="https://css-hooks.com/#gh-light-mode-only" target="_blank">
3
- <img alt="CSS Hooks" src="https://raw.githubusercontent.com/css-hooks/css-hooks/HEAD/.github/logo-light.svg" width="310" height="64" style="max-width: 100%;">
4
- </a>
1
+ <p align="center" id="logos">
2
+ <img alt="CSS Hooks" src="https://github.com/css-hooks/css-hooks/raw/v3.0.5-next.0/.github/logo-light.svg" height="64" style="max-width: 100%;">
5
3
  </p>
6
4
 
7
- <p align="center">
8
- <a href="https://github.com/css-hooks/css-hooks/actions/workflows/build.yml"><img src="https://img.shields.io/github/actions/workflow/status/css-hooks/css-hooks/build.yml?branch=master" alt="Build Status"></a>
9
- <a href="https://www.npmjs.com/org/css-hooks"><img src="https://img.shields.io/npm/v/@css-hooks%2Fcore.svg" alt="Latest Release"></a>
10
- <a href="https://github.com/css-hooks/css-hooks/blob/master/LICENSE"><img src="https://img.shields.io/npm/l/css-hooks.svg" alt="License"></a>
5
+ <p align="center" id="badges">
6
+ <a href="https://github.com/css-hooks/css-hooks/tree/v3.0.5-next.0"><img src="https://img.shields.io/badge/tag-v3.0.5--next.0-hotpink" alt="tag v3.0.5-next.0"></a>
7
+ <a href="https://www.npmjs.com/package/@css-hooks/solid/v/3.0.5-next.0"><img src="https://img.shields.io/badge/npm-v3.0.5--next.0-hotpink" alt="npm version"></a>
8
+ <a href="https://github.com/css-hooks/css-hooks/blob/v3.0.5-next.0/LICENSE"><img src="https://img.shields.io/badge/license-MIT-hotpink" alt="license"></a>
11
9
  </p>
12
10
 
13
11
  ---
package/package.json CHANGED
@@ -1,16 +1,13 @@
1
1
  {
2
2
  "name": "@css-hooks/solid",
3
3
  "description": "CSS Hooks for Solid",
4
- "version": "3.0.4",
4
+ "version": "3.0.5-next.0",
5
5
  "author": "Nick Saunders",
6
6
  "dependencies": {
7
- "@css-hooks/core": "3.0.4"
7
+ "@css-hooks/core": "3.0.5-next.0"
8
8
  },
9
9
  "devDependencies": {
10
- "@microsoft/api-extractor": "^7.39.4",
11
- "rimraf": "^6.0.1",
12
- "solid-js": "^1.7.11",
13
- "typescript": "5.7.0-beta"
10
+ "solid-js": "^1.7.11"
14
11
  },
15
12
  "files": [
16
13
  "cjs",
@@ -31,6 +28,30 @@
31
28
  "url": "https://github.com/css-hooks/css-hooks.git",
32
29
  "directory": "packages/solid"
33
30
  },
31
+ "scripts": {
32
+ "build": "wireit",
33
+ "prepublishOnly": "wireit",
34
+ "test": "node --conditions @css-hooks/source --test src/index.test.ts"
35
+ },
36
+ "wireit": {
37
+ "apix": {
38
+ "command": "api-extractor run",
39
+ "dependencies": [
40
+ "build"
41
+ ]
42
+ },
43
+ "build": {
44
+ "command": "tsc && tsc --project tsconfig.cjs.json",
45
+ "dependencies": [
46
+ "../core:build"
47
+ ]
48
+ },
49
+ "prepublishOnly": {
50
+ "dependencies": [
51
+ "build"
52
+ ]
53
+ }
54
+ },
34
55
  "type": "module",
35
56
  "types": "types",
36
57
  "exports": {
@@ -43,9 +64,5 @@
43
64
  },
44
65
  "browserslist": [
45
66
  "supports css-variables"
46
- ],
47
- "scripts": {
48
- "clean": "rimraf cjs esm types",
49
- "test": "node --experimental-strip-types --conditions @css-hooks/source --test src/index.test.ts"
50
- }
51
- }
67
+ ]
68
+ }
package/LICENSE DELETED
@@ -1,24 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2023 Nick Saunders
4
-
5
- Copyright (c) BuilderIO
6
-
7
- Copyright (c) Meta Platforms Inc. and affiliates.
8
-
9
- Permission is hereby granted, free of charge, to any person obtaining a copy of
10
- this software and associated documentation files (the "Software"), to deal in
11
- the Software without restriction, including without limitation the rights to
12
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
13
- the Software, and to permit persons to whom the Software is furnished to do so,
14
- subject to the following conditions:
15
-
16
- The above copyright notice and this permission notice shall be included in all
17
- copies or substantial portions of the Software.
18
-
19
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
21
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
22
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
23
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,11 +0,0 @@
1
- // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
- // It should be published with your NPM package. It should not be tracked by Git.
3
- {
4
- "tsdocVersion": "0.12",
5
- "toolPackages": [
6
- {
7
- "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.47.11"
9
- }
10
- ]
11
- }