@css-hooks/qwik 3.0.3 → 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 +6 -10
- package/package.json +28 -12
- package/LICENSE +0 -24
- package/types/tsdoc-metadata.json +0 -11
package/README.md
CHANGED
|
@@ -1,15 +1,11 @@
|
|
|
1
|
-
<p align="center">
|
|
2
|
-
|
|
3
|
-
<a href="https://css-hooks.com/#gh-light-mode-only" target="_blank">
|
|
4
|
-
<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%;">
|
|
5
|
-
</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%;">
|
|
6
3
|
</p>
|
|
7
4
|
|
|
8
|
-
<p align="center">
|
|
9
|
-
<a href="https://github.com/css-hooks/css-hooks/
|
|
10
|
-
<a href="https://www.npmjs.com/
|
|
11
|
-
|
|
12
|
-
<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/qwik/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>
|
|
13
9
|
</p>
|
|
14
10
|
|
|
15
11
|
---
|
package/package.json
CHANGED
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@css-hooks/qwik",
|
|
3
3
|
"description": "CSS Hooks for Qwik",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.5-next.0",
|
|
5
5
|
"author": "Nick Saunders",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@css-hooks/core": "3.0.
|
|
7
|
+
"@css-hooks/core": "3.0.5-next.0"
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
|
-
"@builder.io/qwik": "^1.9.0"
|
|
11
|
-
"@microsoft/api-extractor": "^7.39.4",
|
|
12
|
-
"@types/node": "^22.0.0",
|
|
13
|
-
"rimraf": "^6.0.1",
|
|
14
|
-
"typescript": "5.7.0-beta"
|
|
10
|
+
"@builder.io/qwik": "^1.9.0"
|
|
15
11
|
},
|
|
16
12
|
"files": [
|
|
17
13
|
"cjs",
|
|
@@ -38,6 +34,30 @@
|
|
|
38
34
|
"url": "https://github.com/css-hooks/css-hooks.git",
|
|
39
35
|
"directory": "packages/qwik"
|
|
40
36
|
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "wireit",
|
|
39
|
+
"prepublishOnly": "wireit",
|
|
40
|
+
"test": "node --conditions @css-hooks/source --test src/index.test.ts"
|
|
41
|
+
},
|
|
42
|
+
"wireit": {
|
|
43
|
+
"apix": {
|
|
44
|
+
"command": "api-extractor run",
|
|
45
|
+
"dependencies": [
|
|
46
|
+
"build"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
"build": {
|
|
50
|
+
"command": "tsc && tsc --project tsconfig.cjs.json",
|
|
51
|
+
"dependencies": [
|
|
52
|
+
"../core:build"
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
"prepublishOnly": {
|
|
56
|
+
"dependencies": [
|
|
57
|
+
"build"
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
},
|
|
41
61
|
"types": "types",
|
|
42
62
|
"exports": {
|
|
43
63
|
".": {
|
|
@@ -46,9 +66,5 @@
|
|
|
46
66
|
"require": "./cjs/index.js",
|
|
47
67
|
"types": "./types/index.d.ts"
|
|
48
68
|
}
|
|
49
|
-
},
|
|
50
|
-
"scripts": {
|
|
51
|
-
"clean": "rimraf cjs esm types",
|
|
52
|
-
"test": "node --experimental-strip-types --conditions @css-hooks/source --test src/index.test.ts"
|
|
53
69
|
}
|
|
54
|
-
}
|
|
70
|
+
}
|
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
|
-
}
|