@skirbi/tur 0.0.1 → 0.0.2

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/Changes CHANGED
@@ -1,5 +1,9 @@
1
1
  Revision history for @skirbi/tur
2
2
 
3
+ 0.0.2 2026-07-01 04:09:16Z
4
+
5
+ * Bump deps
6
+
3
7
  0.0.1 2026-06-08 01:43:28Z
4
8
 
5
- * First release to an unsuspecting world
9
+ * First release to an unsuspecting world
package/README.md CHANGED
@@ -6,46 +6,9 @@ SPDX-License-Identifier: MIT
6
6
 
7
7
  # Welcome to @skirbi/tur
8
8
 
9
- Skirbi integration for Laravel projects
9
+ This is a meta package for @skirbi. Depending on this package will ensure you
10
+ don't need to depend on @skirbi, this package will take care of the deps.
10
11
 
11
- ## Development
12
-
13
- Try to keep functions small and try not to depend on any outside functions. We
14
- aim to keep the dependency graph as small as possible. The use of `esm` is
15
- welcomed and writing tests is encouraged.
16
-
17
- ### jsdoc
18
-
19
- You can build the documentation by running `npm run jsdoc`.
20
-
21
- ### eslint
22
-
23
- The ES Linting profile is flexible and does not try to enforce much. There is
24
- more than one way to do it ([TIMTOWTDI](https://en.wikipedia.org/wiki/There%27s_more_than_one_way_to_do_it)).
25
-
26
- Try to stay constistent, but forcing a programming style upon others is bad.
27
-
28
- ### Code of Conduct
29
-
30
- Be human.
31
-
32
- ### Semver
33
-
34
- This project does not adhere to semver and one should not rely on the version
35
- x.y.z notation to infer stability or reliability. Read the Changes file to see
36
- any updates a version may bring. The fact that this module sits currently at
37
- 0.x.z ranges does not indicate alpha or beta or even unstable associations. It
38
- is just a number and we started at 0.0.1.
39
-
40
- In general the following hard guarantee will be given: We will not break your
41
- code. In case we do happen to cause breakage: we will fix it accordingly.
42
-
43
- In case we foresee breaking changes we'll add deprecation warnings. Giving you
44
- time to fix things before a breaking change will be introduced. When a change
45
- will be introduced is communicated in the Changes file. Security fixes may
46
- cause breakage at any given time without notice.
47
-
48
- This package is released by `rzilla`, changes to `package.json` will be
49
- overridden. In addition to a little bit of promotion, this also means that
50
- version numbers are autoincremented at release time and bumped in all relevant
51
- files: Versioning for humans, not machines.
12
+ It takes care of overrides, so all @skirbi units will only be hoisted once, you
13
+ won't have three versions of sugar just because you depend on dibuho, semtic
14
+ and sugar itself.
package/lib/index.mjs CHANGED
@@ -2,4 +2,4 @@
2
2
  //
3
3
  // SPDX-License-Identifier: MIT
4
4
 
5
- const VERSION = "0.0.1";
5
+ const VERSION = "0.0.2";
package/package.json CHANGED
@@ -4,10 +4,11 @@
4
4
  "name": "Wesley Schwengle"
5
5
  },
6
6
  "dependencies": {
7
- "@skirbi/dibuho": ">=0.0.1",
8
- "@skirbi/pinta": ">=0.0.17",
9
- "@skirbi/semtic": ">=0.0.20",
10
- "@skirbi/sugar": ">=0.1.6"
7
+ "@skirbi/dibuho": ">=0.0.3",
8
+ "@skirbi/pinta": ">=0.0.19",
9
+ "@skirbi/semtic": ">=0.0.25",
10
+ "@skirbi/sugar": ">=0.1.10",
11
+ "@skribi/bolbe": ">=0.0.3"
11
12
  },
12
13
  "description": "Skirbi meta package",
13
14
  "devDependencies": {},
@@ -22,7 +23,7 @@
22
23
  "license": "MIT",
23
24
  "name": "@skirbi/tur",
24
25
  "overrides": {
25
- "@skirbi/sugar": ">=0.1.6"
26
+ "@skirbi/sugar": ">=0.1.10"
26
27
  },
27
28
  "private": false,
28
29
  "scripts": {
@@ -33,5 +34,5 @@
33
34
  },
34
35
  "sideEffects": false,
35
36
  "type": "module",
36
- "version": "0.0.1"
37
+ "version": "0.0.2"
37
38
  }