@ariakit/solid 0.1.3 → 0.1.5

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,13 @@
1
1
  # @ariakit/solid
2
2
 
3
+ ## 0.1.5
4
+
5
+ - Updated dependencies: `@ariakit/solid-core@0.1.5`
6
+
7
+ ## 0.1.4
8
+
9
+ - Updated dependencies: `@ariakit/solid-core@0.1.4`
10
+
3
11
  ## 0.1.3
4
12
 
5
13
  - Updated packages to target ES2018 (previously ES2017).
package/package.json CHANGED
@@ -1,19 +1,17 @@
1
1
  {
2
2
  "name": "@ariakit/solid",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Toolkit for building accessible web apps with Solid",
5
- "sideEffects": false,
5
+ "keywords": [
6
+ "a11y",
7
+ "ariakit",
8
+ "components",
9
+ "solid",
10
+ "toolkit",
11
+ "ui"
12
+ ],
13
+ "homepage": "https://solid.ariakit.com",
6
14
  "license": "MIT",
7
- "homepage": "https://solid.ariakit.org",
8
- "type": "module",
9
- "main": "cjs/index.cjs",
10
- "module": "esm/index.js",
11
- "types": "cjs/index.d.ts",
12
- "repository": {
13
- "type": "git",
14
- "url": "https://github.com/ariakit/ariakit.git",
15
- "directory": "packages/ariakit-solid"
16
- },
17
15
  "author": {
18
16
  "name": "Dani Guardiola",
19
17
  "email": "hi@daniguardio.la",
@@ -26,25 +24,22 @@
26
24
  "url": "https://github.com/diegohaz"
27
25
  }
28
26
  ],
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "https://github.com/ariakit/ariakit.git",
30
+ "directory": "packages/ariakit-solid"
31
+ },
29
32
  "funding": {
30
33
  "type": "opencollective",
31
34
  "url": "https://opencollective.com/ariakit"
32
35
  },
33
- "scripts": {
34
- "lint": "biome check .",
35
- "build": "node ../../scripts/build/build.js",
36
- "clean": "node ../../scripts/build/clean.js"
37
- },
38
- "keywords": [
39
- "ariakit",
40
- "solid",
41
- "a11y",
42
- "ui",
43
- "toolkit",
44
- "components"
45
- ],
36
+ "type": "module",
37
+ "sideEffects": false,
38
+ "main": "cjs/index.cjs",
39
+ "module": "esm/index.js",
40
+ "types": "cjs/index.d.ts",
46
41
  "dependencies": {
47
- "@ariakit/solid-core": "0.1.3"
42
+ "@ariakit/solid-core": "0.1.5"
48
43
  },
49
44
  "peerDependencies": {
50
45
  "solid-js": "^1.8"
@@ -115,5 +110,9 @@
115
110
  }
116
111
  },
117
112
  "./package.json": "./package.json"
113
+ },
114
+ "scripts": {
115
+ "build": "node ../../scripts/build/build.js",
116
+ "clean": "node ../../scripts/build/clean.js"
118
117
  }
119
- }
118
+ }
package/readme.md CHANGED
@@ -3,7 +3,7 @@
3
3
  <p align="center">
4
4
  Toolkit for building accessible web apps with <a href="https://www.solidjs.com">Solid</a>.
5
5
  <br>
6
- <a href="https://solid.ariakit.org"><strong>Explore website »</strong></a>
6
+ <a href="https://solid.ariakit.com"><strong>Explore website »</strong></a>
7
7
  </p>
8
8
 
9
9
  <br>
@@ -27,7 +27,7 @@
27
27
  <img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/ariakit/ariakit?style=social">
28
28
  </a>
29
29
  &nbsp;
30
- <a href="https://bsky.app/profile/ariakit.org">
30
+ <a href="https://bsky.app/profile/ariakit.com">
31
31
  <img alt="Follow Ariakit on Bluesky" src="https://img.shields.io/badge/Bluesky-0285FF?logo=bluesky&logoColor=fff">
32
32
  </a>
33
33
  &nbsp;
@@ -1,4 +1,9 @@
1
1
  {
2
2
  "extends": "../../tsconfig.solid.json",
3
- "include": ["src"]
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "rootDir": "src"
6
+ },
7
+ "include": ["src"],
8
+ "exclude": []
4
9
  }