diff --git a/bin/build.sh b/bin/build.sh index c25ad43..b1e87ab 100755 --- a/bin/build.sh +++ b/bin/build.sh @@ -2,6 +2,6 @@ cd "${0%/*}" && \ cd .. && \ -docker-compose run --rm \ +docker compose run --rm \ -u "$(id -u):$(id -g)" \ jig bash -c "yarn install; gulp --color build" diff --git a/bin/documentation.sh b/bin/documentation.sh index 8716478..9a33ca1 100755 --- a/bin/documentation.sh +++ b/bin/documentation.sh @@ -2,6 +2,6 @@ cd "${0%/*}" && \ cd .. && \ -docker-compose run --rm \ +docker compose run --rm \ -u "$(id -u):$(id -g)" \ jig bash -c "yarn install; gulp --color documentation" diff --git a/bin/examples.sh b/bin/examples.sh index ad6690d..4a0af4e 100755 --- a/bin/examples.sh +++ b/bin/examples.sh @@ -2,4 +2,4 @@ cd "${0%/*}" && \ cd .. && \ -docker-compose up +docker compose up diff --git a/bin/shell.sh b/bin/shell.sh index 26f79d0..9b141f4 100755 --- a/bin/shell.sh +++ b/bin/shell.sh @@ -2,5 +2,5 @@ cd "${0%/*}" && \ cd .. && \ -docker-compose run --rm \ +docker compose run --rm \ jig bash diff --git a/bin/ssh.sh b/bin/ssh.sh index b98990e..db9d00e 100755 --- a/bin/ssh.sh +++ b/bin/ssh.sh @@ -2,5 +2,5 @@ cd "${0%/*}" && \ cd .. && \ -docker-compose exec \ +docker compose exec \ jig bash diff --git a/bin/test.sh b/bin/test.sh deleted file mode 100755 index f2e906f..0000000 --- a/bin/test.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -cd "${0%/*}" && \ -cd .. && \ -docker-compose run --rm \ --u "$(id -u):$(id -g)" \ -jig bash -c "yarn install; gulp --color test $1" diff --git a/docs/documentation/scss-legacy/Breakpoints.html b/docs/documentation/scss-legacy/Breakpoints.html index 4970e80..8479b65 100644 --- a/docs/documentation/scss-legacy/Breakpoints.html +++ b/docs/documentation/scss-legacy/Breakpoints.html @@ -119,7 +119,7 @@
Either view the examples on GitHub or open
/docs/examples/index.html
locally after checking out the repo.
Besides just downloading the zip and dropping the package in your project (which I would not recommend doing), you may -easily use npm or yarn. Since I do not publish to npm yet, you can just reference the Github repo and maybe the version -tag (which I would recommend) and you are done. To get an idea about the latest version and/or changes, have a look at -the tags and releases in Github.
+Besides just downloading the zip file and dropping the package in your project (which I would not recommend doing), you +may easily use NPM or Yarn.
+Currently, I'm publishing to Github packages and not the central NPM registry. If you want to directly install the
+package, not using the repository URL, , you'll have to tell NPM/Yarn, that @oktarintentakel
can be found at GitHub
+packages and not at the central NPM registry and add an access token to use for installing. To do this, add or edit a
+.npmrc
file (either globally in your home folder or next to the package.json
to your project) and add
+@oktarintentakel:registry=https://npm.pkg.github.com
to the file (following GitHub's
+documentation).
+After this, the defined namespace is installed from there automatically. Additionally, we also need a personal access
+token by adding the line //npm.pkg.github.com/:_authToken=TOKEN
(following GitHub's
+documentation).
Hint: I am aware, that this is rather cumbersome currently, and therefore I currently suggest using the repository +URL, but I implemented the workflow anyway, awaiting an easier workflow in the future.
npm install @oktarintentakel/jig
+npm install @oktarintentakel/jig
or with a version
-npm install @oktarintentakel/jig@X.X.X
+npm install @oktarintentakel/jig@X.X.X
-or via GitHub directly
-npm install oktarintentakel/jig
+or via GitHub repository
+npm install oktarintentakel/jig
-or via GitHub directly using a tag
-npm install oktarintentakel/jig#vX.X.X
+or via GitHub repository using a tag
+npm install oktarintentakel/jig#vX.X.X
Yarn
-yarn add @oktarintentakel/jig
+yarn add @oktarintentakel/jig
or with a version
-yarn add @oktarintentakel/jig@X.X.X
+yarn add @oktarintentakel/jig@X.X.X
-or via GitHub directly
-yarn add oktarintentakel/jig
+or via GitHub repository
+yarn add oktarintentakel/jig
-or via GitHub directly using a tag
-yarn add oktarintentakel/jig#vX.X.X
+or via GitHub repository using a tag
+yarn add oktarintentakel/jig#vX.X.X
Using an Alias Location
-In many cases (especially when installing directly from Github) it makes sense to define an install alias, to manually
-define a folder inside node_modules
to install to.
+In many cases (especially when installing directly from Github repository) it makes sense to define an install alias,
+to manually define a folder inside node_modules
to install to.
Using NPM
-npm install my-alias-location@:npm@oktarintentakel/jig@X.X.X
+npm install my-alias-location@:npm@oktarintentakel/jig@X.X.X
-or using NPM with GitHub
-npm install my-alias-location@oktarintentakel/jig#vX.X.X
+or using NPM with GitHub repository
+npm install my-alias-location@oktarintentakel/jig#vX.X.X
or using Yarn
-yarn add my-alias-location@:npm@oktarintentakel/jig@X.X.X
+yarn add my-alias-location@:npm@oktarintentakel/jig@X.X.X
-or using Yarn with GitHub
-yarn add my-alias-location@oktarintentakel/jig#vX.X.X
+or using Yarn with GitHub repository
+yarn add my-alias-location@oktarintentakel/jig#vX.X.X
+
+or in package.json
+{
+ "dependencies": {
+ "my-alias-location" : "npm:@oktarintentakel/jig@X.X.X"
+ }
+}
+
+or with Github repository
+{
+ "dependencies": {
+ "my-alias-location" : "oktarintentakel/jig#vX.X.X"
+ }
+}
@client Package Separation
It may be a good idea, to generally split node and client packages up. Why? Client packages are delivered directly to
@@ -156,19 +179,12 @@
@client Package Separation
@client
package in node_modules
using fixed versioning for these (I originally got the idea when I transitioned)
from bower to npm, reading the bower team's ideas about
this.
-So, adding a @client
dependency may look like this in package.json
:
-"dependencies": {
- "@client/jig" : "oktarintentakel/jig#vX.X.X",
- ...
-}
-
-You can also add the dependency on the command line like this, albeit the command gets a little lengthy then:
-yarn add @client/jig@oktarintentakel/jig#vX.X.X
-
-If the package is on npm you can, of course, pull the package from there as well:
-"dependencies": {
- "@client/jig" : "npm:@oktarintentakel/jig@1.0.0",
- ...
+So, I propose to generally use an alias location for client packages, such as this
+(see previous point, for all/other options):
+{
+ "dependencies": {
+ "@client/jig" : "oktarintentakel/jig#vX.X.X"
+ }
}
How Do I Include and Use This?
@@ -297,7 +313,7 @@ Home
Namespaces
-
diff --git a/docs/documentation/scss-legacy/spacing.scss.html b/docs/documentation/scss-legacy/spacing.scss.html
index a087a13..bc477e1 100644
--- a/docs/documentation/scss-legacy/spacing.scss.html
+++ b/docs/documentation/scss-legacy/spacing.scss.html
@@ -169,7 +169,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss-legacy/util.scss.html b/docs/documentation/scss-legacy/util.scss.html
index 125c5d4..5796b3e 100644
--- a/docs/documentation/scss-legacy/util.scss.html
+++ b/docs/documentation/scss-legacy/util.scss.html
@@ -244,7 +244,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Breakpoints.html b/docs/documentation/scss/Breakpoints.html
index bdeb9fe..6a36478 100644
--- a/docs/documentation/scss/Breakpoints.html
+++ b/docs/documentation/scss/Breakpoints.html
@@ -119,7 +119,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Breakpoints_attribute-for-breakpoints.html b/docs/documentation/scss/Breakpoints_attribute-for-breakpoints.html
index fe0220a..6a1885f 100644
--- a/docs/documentation/scss/Breakpoints_attribute-for-breakpoints.html
+++ b/docs/documentation/scss/Breakpoints_attribute-for-breakpoints.html
@@ -366,7 +366,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Breakpoints_attributes-for-breakpoints.html b/docs/documentation/scss/Breakpoints_attributes-for-breakpoints.html
index 671cb41..517b91c 100644
--- a/docs/documentation/scss/Breakpoints_attributes-for-breakpoints.html
+++ b/docs/documentation/scss/Breakpoints_attributes-for-breakpoints.html
@@ -339,7 +339,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Breakpoints_breakpoint-value.html b/docs/documentation/scss/Breakpoints_breakpoint-value.html
index 776992d..eae522e 100644
--- a/docs/documentation/scss/Breakpoints_breakpoint-value.html
+++ b/docs/documentation/scss/Breakpoints_breakpoint-value.html
@@ -336,7 +336,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Breakpoints_breakpoint.html b/docs/documentation/scss/Breakpoints_breakpoint.html
index cac7d46..dba60be 100644
--- a/docs/documentation/scss/Breakpoints_breakpoint.html
+++ b/docs/documentation/scss/Breakpoints_breakpoint.html
@@ -276,7 +276,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Breakpoints_build-breakpoint-query.html b/docs/documentation/scss/Breakpoints_build-breakpoint-query.html
index 24766a3..3604175 100644
--- a/docs/documentation/scss/Breakpoints_build-breakpoint-query.html
+++ b/docs/documentation/scss/Breakpoints_build-breakpoint-query.html
@@ -341,7 +341,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Breakpoints_build-breakpoint-range.html b/docs/documentation/scss/Breakpoints_build-breakpoint-range.html
index 391c95d..905c2dd 100644
--- a/docs/documentation/scss/Breakpoints_build-breakpoint-range.html
+++ b/docs/documentation/scss/Breakpoints_build-breakpoint-range.html
@@ -348,7 +348,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Breakpoints_get-auto-breakpoint.html b/docs/documentation/scss/Breakpoints_get-auto-breakpoint.html
index 5bcc555..cddae4e 100644
--- a/docs/documentation/scss/Breakpoints_get-auto-breakpoint.html
+++ b/docs/documentation/scss/Breakpoints_get-auto-breakpoint.html
@@ -242,7 +242,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Breakpoints_is-named-breakpoint.html b/docs/documentation/scss/Breakpoints_is-named-breakpoint.html
index 2c2d9ee..f55cdc7 100644
--- a/docs/documentation/scss/Breakpoints_is-named-breakpoint.html
+++ b/docs/documentation/scss/Breakpoints_is-named-breakpoint.html
@@ -282,7 +282,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Breakpoints_overwrite-breakpoint-for-attribute.html b/docs/documentation/scss/Breakpoints_overwrite-breakpoint-for-attribute.html
index 3228919..17c9026 100644
--- a/docs/documentation/scss/Breakpoints_overwrite-breakpoint-for-attribute.html
+++ b/docs/documentation/scss/Breakpoints_overwrite-breakpoint-for-attribute.html
@@ -358,7 +358,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Breakpoints_overwrite-breakpoint-for-attributes.html b/docs/documentation/scss/Breakpoints_overwrite-breakpoint-for-attributes.html
index 963f29b..5243d7f 100644
--- a/docs/documentation/scss/Breakpoints_overwrite-breakpoint-for-attributes.html
+++ b/docs/documentation/scss/Breakpoints_overwrite-breakpoint-for-attributes.html
@@ -330,7 +330,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Breakpoints_overwrite-breakpoint.html b/docs/documentation/scss/Breakpoints_overwrite-breakpoint.html
index 5490c32..edc91a0 100644
--- a/docs/documentation/scss/Breakpoints_overwrite-breakpoint.html
+++ b/docs/documentation/scss/Breakpoints_overwrite-breakpoint.html
@@ -215,7 +215,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Breakpoints_reset-auto-breakpoint.html b/docs/documentation/scss/Breakpoints_reset-auto-breakpoint.html
index b239fed..81c0ae4 100644
--- a/docs/documentation/scss/Breakpoints_reset-auto-breakpoint.html
+++ b/docs/documentation/scss/Breakpoints_reset-auto-breakpoint.html
@@ -219,7 +219,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Breakpoints_set-auto-breakpoint.html b/docs/documentation/scss/Breakpoints_set-auto-breakpoint.html
index 0702402..cda423b 100644
--- a/docs/documentation/scss/Breakpoints_set-auto-breakpoint.html
+++ b/docs/documentation/scss/Breakpoints_set-auto-breakpoint.html
@@ -284,7 +284,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Grid.html b/docs/documentation/scss/Grid.html
index accc214..bdb8a00 100644
--- a/docs/documentation/scss/Grid.html
+++ b/docs/documentation/scss/Grid.html
@@ -119,7 +119,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Grid_grid-container.html b/docs/documentation/scss/Grid_grid-container.html
index c4a5e25..dc66943 100644
--- a/docs/documentation/scss/Grid_grid-container.html
+++ b/docs/documentation/scss/Grid_grid-container.html
@@ -219,7 +219,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Grid_grid-item-align.html b/docs/documentation/scss/Grid_grid-item-align.html
index ff36ac5..4a8aae3 100644
--- a/docs/documentation/scss/Grid_grid-item-align.html
+++ b/docs/documentation/scss/Grid_grid-item-align.html
@@ -328,7 +328,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Grid_grid-item.html b/docs/documentation/scss/Grid_grid-item.html
index 0633567..2ebf2ff 100644
--- a/docs/documentation/scss/Grid_grid-item.html
+++ b/docs/documentation/scss/Grid_grid-item.html
@@ -506,7 +506,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Grid_gutter-value.html b/docs/documentation/scss/Grid_gutter-value.html
index 2ef4b04..4a00e14 100644
--- a/docs/documentation/scss/Grid_gutter-value.html
+++ b/docs/documentation/scss/Grid_gutter-value.html
@@ -437,7 +437,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Spacing.html b/docs/documentation/scss/Spacing.html
index 5fdc8ac..3f75c7d 100644
--- a/docs/documentation/scss/Spacing.html
+++ b/docs/documentation/scss/Spacing.html
@@ -119,7 +119,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Spacing_spacing-based-attribute.html b/docs/documentation/scss/Spacing_spacing-based-attribute.html
index f4f8b76..539fbec 100644
--- a/docs/documentation/scss/Spacing_spacing-based-attribute.html
+++ b/docs/documentation/scss/Spacing_spacing-based-attribute.html
@@ -370,7 +370,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Spacing_spacing-based-attributes.html b/docs/documentation/scss/Spacing_spacing-based-attributes.html
index cfc72a4..36cd92f 100644
--- a/docs/documentation/scss/Spacing_spacing-based-attributes.html
+++ b/docs/documentation/scss/Spacing_spacing-based-attributes.html
@@ -348,7 +348,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Spacing_spacing-value.html b/docs/documentation/scss/Spacing_spacing-value.html
index 52b66d8..bded6b8 100644
--- a/docs/documentation/scss/Spacing_spacing-value.html
+++ b/docs/documentation/scss/Spacing_spacing-value.html
@@ -357,7 +357,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Util.html b/docs/documentation/scss/Util.html
index 01361ce..a8f9df1 100644
--- a/docs/documentation/scss/Util.html
+++ b/docs/documentation/scss/Util.html
@@ -119,7 +119,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Util_map-next.html b/docs/documentation/scss/Util_map-next.html
index 9d6c392..2659da5 100644
--- a/docs/documentation/scss/Util_map-next.html
+++ b/docs/documentation/scss/Util_map-next.html
@@ -310,7 +310,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Util_str-join.html b/docs/documentation/scss/Util_str-join.html
index 9f998a4..be84e5b 100644
--- a/docs/documentation/scss/Util_str-join.html
+++ b/docs/documentation/scss/Util_str-join.html
@@ -308,7 +308,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Util_strip-unit.html b/docs/documentation/scss/Util_strip-unit.html
index 80bbb4d..79a7543 100644
--- a/docs/documentation/scss/Util_strip-unit.html
+++ b/docs/documentation/scss/Util_strip-unit.html
@@ -282,7 +282,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/Util_to-rem.html b/docs/documentation/scss/Util_to-rem.html
index 171f4f1..508146f 100644
--- a/docs/documentation/scss/Util_to-rem.html
+++ b/docs/documentation/scss/Util_to-rem.html
@@ -348,7 +348,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/breakpoints.scss.html b/docs/documentation/scss/breakpoints.scss.html
index 0fd5175..1dfffb2 100644
--- a/docs/documentation/scss/breakpoints.scss.html
+++ b/docs/documentation/scss/breakpoints.scss.html
@@ -647,7 +647,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/grid.scss.html b/docs/documentation/scss/grid.scss.html
index 9f0b380..5895060 100644
--- a/docs/documentation/scss/grid.scss.html
+++ b/docs/documentation/scss/grid.scss.html
@@ -271,7 +271,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/index.html b/docs/documentation/scss/index.html
index f6caac5..1792e2a 100644
--- a/docs/documentation/scss/index.html
+++ b/docs/documentation/scss/index.html
@@ -96,48 +96,71 @@
How Can I Run the Examples?
Either view the examples on GitHub or open
/docs/examples/index.html
locally after checking out the repo.
How Do I Install This?
-Besides just downloading the zip and dropping the package in your project (which I would not recommend doing), you may
-easily use npm or yarn. Since I do not publish to npm yet, you can just reference the Github repo and maybe the version
-tag (which I would recommend) and you are done. To get an idea about the latest version and/or changes, have a look at
-the tags and releases in Github.
+Besides just downloading the zip file and dropping the package in your project (which I would not recommend doing), you
+may easily use NPM or Yarn.
+Currently, I'm publishing to Github packages and not the central NPM registry. If you want to directly install the
+package, not using the repository URL, , you'll have to tell NPM/Yarn, that @oktarintentakel
can be found at GitHub
+packages and not at the central NPM registry and add an access token to use for installing. To do this, add or edit a
+.npmrc
file (either globally in your home folder or next to the package.json
to your project) and add
+@oktarintentakel:registry=https://npm.pkg.github.com
to the file (following GitHub's
+documentation).
+After this, the defined namespace is installed from there automatically. Additionally, we also need a personal access
+token by adding the line //npm.pkg.github.com/:_authToken=TOKEN
(following GitHub's
+documentation).
+Hint: I am aware, that this is rather cumbersome currently, and therefore I currently suggest using the repository
+URL, but I implemented the workflow anyway, awaiting an easier workflow in the future.
NPM
-npm install @oktarintentakel/jig
+npm install @oktarintentakel/jig
or with a version
-npm install @oktarintentakel/jig@X.X.X
+npm install @oktarintentakel/jig@X.X.X
-or via GitHub directly
-npm install oktarintentakel/jig
+or via GitHub repository
+npm install oktarintentakel/jig
-or via GitHub directly using a tag
-npm install oktarintentakel/jig#vX.X.X
+or via GitHub repository using a tag
+npm install oktarintentakel/jig#vX.X.X
Yarn
-yarn add @oktarintentakel/jig
+yarn add @oktarintentakel/jig
or with a version
-yarn add @oktarintentakel/jig@X.X.X
+yarn add @oktarintentakel/jig@X.X.X
-or via GitHub directly
-yarn add oktarintentakel/jig
+or via GitHub repository
+yarn add oktarintentakel/jig
-or via GitHub directly using a tag
-yarn add oktarintentakel/jig#vX.X.X
+or via GitHub repository using a tag
+yarn add oktarintentakel/jig#vX.X.X
Using an Alias Location
-In many cases (especially when installing directly from Github) it makes sense to define an install alias, to manually
-define a folder inside node_modules
to install to.
+In many cases (especially when installing directly from Github repository) it makes sense to define an install alias,
+to manually define a folder inside node_modules
to install to.
Using NPM
-npm install my-alias-location@:npm@oktarintentakel/jig@X.X.X
+npm install my-alias-location@:npm@oktarintentakel/jig@X.X.X
-or using NPM with GitHub
-npm install my-alias-location@oktarintentakel/jig#vX.X.X
+or using NPM with GitHub repository
+npm install my-alias-location@oktarintentakel/jig#vX.X.X
or using Yarn
-yarn add my-alias-location@:npm@oktarintentakel/jig@X.X.X
+yarn add my-alias-location@:npm@oktarintentakel/jig@X.X.X
-or using Yarn with GitHub
-yarn add my-alias-location@oktarintentakel/jig#vX.X.X
+or using Yarn with GitHub repository
+yarn add my-alias-location@oktarintentakel/jig#vX.X.X
+
+or in package.json
+{
+ "dependencies": {
+ "my-alias-location" : "npm:@oktarintentakel/jig@X.X.X"
+ }
+}
+
+or with Github repository
+{
+ "dependencies": {
+ "my-alias-location" : "oktarintentakel/jig#vX.X.X"
+ }
+}
@client Package Separation
It may be a good idea, to generally split node and client packages up. Why? Client packages are delivered directly to
@@ -156,19 +179,12 @@
@client Package Separation
@client
package in node_modules
using fixed versioning for these (I originally got the idea when I transitioned)
from bower to npm, reading the bower team's ideas about
this.
-So, adding a @client
dependency may look like this in package.json
:
-"dependencies": {
- "@client/jig" : "oktarintentakel/jig#vX.X.X",
- ...
-}
-
-You can also add the dependency on the command line like this, albeit the command gets a little lengthy then:
-yarn add @client/jig@oktarintentakel/jig#vX.X.X
-
-If the package is on npm you can, of course, pull the package from there as well:
-"dependencies": {
- "@client/jig" : "npm:@oktarintentakel/jig@1.0.0",
- ...
+So, I propose to generally use an alias location for client packages, such as this
+(see previous point, for all/other options):
+{
+ "dependencies": {
+ "@client/jig" : "oktarintentakel/jig#vX.X.X"
+ }
}
How Do I Include and Use This?
@@ -297,7 +313,7 @@ Home
Namespaces
-
diff --git a/docs/documentation/scss/spacing.scss.html b/docs/documentation/scss/spacing.scss.html
index 6cc96a1..74b86f4 100644
--- a/docs/documentation/scss/spacing.scss.html
+++ b/docs/documentation/scss/spacing.scss.html
@@ -177,7 +177,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/scss/util.scss.html b/docs/documentation/scss/util.scss.html
index e82ab47..2b194a1 100644
--- a/docs/documentation/scss/util.scss.html
+++ b/docs/documentation/scss/util.scss.html
@@ -220,7 +220,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Breakpoints.html b/docs/documentation/stylus/Breakpoints.html
index 6969a40..3073da2 100644
--- a/docs/documentation/stylus/Breakpoints.html
+++ b/docs/documentation/stylus/Breakpoints.html
@@ -119,7 +119,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Breakpoints_attribute-for-breakpoints.html b/docs/documentation/stylus/Breakpoints_attribute-for-breakpoints.html
index cee2bda..155973e 100644
--- a/docs/documentation/stylus/Breakpoints_attribute-for-breakpoints.html
+++ b/docs/documentation/stylus/Breakpoints_attribute-for-breakpoints.html
@@ -366,7 +366,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Breakpoints_attributes-for-breakpoints.html b/docs/documentation/stylus/Breakpoints_attributes-for-breakpoints.html
index e016196..aa6f730 100644
--- a/docs/documentation/stylus/Breakpoints_attributes-for-breakpoints.html
+++ b/docs/documentation/stylus/Breakpoints_attributes-for-breakpoints.html
@@ -339,7 +339,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Breakpoints_breakpoint-value.html b/docs/documentation/stylus/Breakpoints_breakpoint-value.html
index 8b2fa99..bda802e 100644
--- a/docs/documentation/stylus/Breakpoints_breakpoint-value.html
+++ b/docs/documentation/stylus/Breakpoints_breakpoint-value.html
@@ -336,7 +336,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Breakpoints_breakpoint.html b/docs/documentation/stylus/Breakpoints_breakpoint.html
index 3f45f5d..5298dc8 100644
--- a/docs/documentation/stylus/Breakpoints_breakpoint.html
+++ b/docs/documentation/stylus/Breakpoints_breakpoint.html
@@ -281,7 +281,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Breakpoints_build-breakpoint-query.html b/docs/documentation/stylus/Breakpoints_build-breakpoint-query.html
index 4c64398..2399f85 100644
--- a/docs/documentation/stylus/Breakpoints_build-breakpoint-query.html
+++ b/docs/documentation/stylus/Breakpoints_build-breakpoint-query.html
@@ -341,7 +341,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Breakpoints_build-breakpoint-range.html b/docs/documentation/stylus/Breakpoints_build-breakpoint-range.html
index b546157..a36a952 100644
--- a/docs/documentation/stylus/Breakpoints_build-breakpoint-range.html
+++ b/docs/documentation/stylus/Breakpoints_build-breakpoint-range.html
@@ -348,7 +348,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Breakpoints_get-auto-breakpoint.html b/docs/documentation/stylus/Breakpoints_get-auto-breakpoint.html
index b438889..3c1eeed 100644
--- a/docs/documentation/stylus/Breakpoints_get-auto-breakpoint.html
+++ b/docs/documentation/stylus/Breakpoints_get-auto-breakpoint.html
@@ -242,7 +242,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Breakpoints_is-named-breakpoint.html b/docs/documentation/stylus/Breakpoints_is-named-breakpoint.html
index 8ed02d9..0b54887 100644
--- a/docs/documentation/stylus/Breakpoints_is-named-breakpoint.html
+++ b/docs/documentation/stylus/Breakpoints_is-named-breakpoint.html
@@ -282,7 +282,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Breakpoints_overwrite-breakpoint-for-attribute.html b/docs/documentation/stylus/Breakpoints_overwrite-breakpoint-for-attribute.html
index 292bbd4..ebfc6ea 100644
--- a/docs/documentation/stylus/Breakpoints_overwrite-breakpoint-for-attribute.html
+++ b/docs/documentation/stylus/Breakpoints_overwrite-breakpoint-for-attribute.html
@@ -358,7 +358,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Breakpoints_overwrite-breakpoint-for-attributes.html b/docs/documentation/stylus/Breakpoints_overwrite-breakpoint-for-attributes.html
index c45e455..28862be 100644
--- a/docs/documentation/stylus/Breakpoints_overwrite-breakpoint-for-attributes.html
+++ b/docs/documentation/stylus/Breakpoints_overwrite-breakpoint-for-attributes.html
@@ -330,7 +330,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Breakpoints_overwrite-breakpoint.html b/docs/documentation/stylus/Breakpoints_overwrite-breakpoint.html
index 82e4424..75fd5b7 100644
--- a/docs/documentation/stylus/Breakpoints_overwrite-breakpoint.html
+++ b/docs/documentation/stylus/Breakpoints_overwrite-breakpoint.html
@@ -214,7 +214,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Breakpoints_reset-auto-breakpoint.html b/docs/documentation/stylus/Breakpoints_reset-auto-breakpoint.html
index 9f67ab9..05bd877 100644
--- a/docs/documentation/stylus/Breakpoints_reset-auto-breakpoint.html
+++ b/docs/documentation/stylus/Breakpoints_reset-auto-breakpoint.html
@@ -220,7 +220,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Breakpoints_set-auto-breakpoint.html b/docs/documentation/stylus/Breakpoints_set-auto-breakpoint.html
index cea8547..8e66d3a 100644
--- a/docs/documentation/stylus/Breakpoints_set-auto-breakpoint.html
+++ b/docs/documentation/stylus/Breakpoints_set-auto-breakpoint.html
@@ -283,7 +283,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Grid.html b/docs/documentation/stylus/Grid.html
index c42fad6..5efd93f 100644
--- a/docs/documentation/stylus/Grid.html
+++ b/docs/documentation/stylus/Grid.html
@@ -119,7 +119,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Grid_grid-container.html b/docs/documentation/stylus/Grid_grid-container.html
index 365b4f1..9e93b68 100644
--- a/docs/documentation/stylus/Grid_grid-container.html
+++ b/docs/documentation/stylus/Grid_grid-container.html
@@ -219,7 +219,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Grid_grid-item-align.html b/docs/documentation/stylus/Grid_grid-item-align.html
index 63ec6d8..314888b 100644
--- a/docs/documentation/stylus/Grid_grid-item-align.html
+++ b/docs/documentation/stylus/Grid_grid-item-align.html
@@ -328,7 +328,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Grid_grid-item.html b/docs/documentation/stylus/Grid_grid-item.html
index c54c8e3..9332227 100644
--- a/docs/documentation/stylus/Grid_grid-item.html
+++ b/docs/documentation/stylus/Grid_grid-item.html
@@ -506,7 +506,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Grid_gutter-value.html b/docs/documentation/stylus/Grid_gutter-value.html
index 2ee6795..fa236f8 100644
--- a/docs/documentation/stylus/Grid_gutter-value.html
+++ b/docs/documentation/stylus/Grid_gutter-value.html
@@ -436,7 +436,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Spacing.html b/docs/documentation/stylus/Spacing.html
index 4d4157e..b3a6407 100644
--- a/docs/documentation/stylus/Spacing.html
+++ b/docs/documentation/stylus/Spacing.html
@@ -119,7 +119,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Spacing_spacing-based-attribute.html b/docs/documentation/stylus/Spacing_spacing-based-attribute.html
index 62eb765..332de97 100644
--- a/docs/documentation/stylus/Spacing_spacing-based-attribute.html
+++ b/docs/documentation/stylus/Spacing_spacing-based-attribute.html
@@ -370,7 +370,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Spacing_spacing-based-attributes.html b/docs/documentation/stylus/Spacing_spacing-based-attributes.html
index 5b60499..34fca10 100644
--- a/docs/documentation/stylus/Spacing_spacing-based-attributes.html
+++ b/docs/documentation/stylus/Spacing_spacing-based-attributes.html
@@ -348,7 +348,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Spacing_spacing-value.html b/docs/documentation/stylus/Spacing_spacing-value.html
index ec6313e..a34efb5 100644
--- a/docs/documentation/stylus/Spacing_spacing-value.html
+++ b/docs/documentation/stylus/Spacing_spacing-value.html
@@ -357,7 +357,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Util.html b/docs/documentation/stylus/Util.html
index 253f796..ae1eb3b 100644
--- a/docs/documentation/stylus/Util.html
+++ b/docs/documentation/stylus/Util.html
@@ -119,7 +119,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Util_hash-get-deep.html b/docs/documentation/stylus/Util_hash-get-deep.html
index e4b6a7f..501d422 100644
--- a/docs/documentation/stylus/Util_hash-get-deep.html
+++ b/docs/documentation/stylus/Util_hash-get-deep.html
@@ -311,7 +311,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Util_hash-next.html b/docs/documentation/stylus/Util_hash-next.html
index 97b61a4..0876ab6 100644
--- a/docs/documentation/stylus/Util_hash-next.html
+++ b/docs/documentation/stylus/Util_hash-next.html
@@ -310,7 +310,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Util_str-join.html b/docs/documentation/stylus/Util_str-join.html
index 9cf7f9e..961bdb0 100644
--- a/docs/documentation/stylus/Util_str-join.html
+++ b/docs/documentation/stylus/Util_str-join.html
@@ -308,7 +308,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Util_strip-unit.html b/docs/documentation/stylus/Util_strip-unit.html
index 337074c..9cea0c6 100644
--- a/docs/documentation/stylus/Util_strip-unit.html
+++ b/docs/documentation/stylus/Util_strip-unit.html
@@ -282,7 +282,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Util_to-rem.html b/docs/documentation/stylus/Util_to-rem.html
index 6c39620..9a76717 100644
--- a/docs/documentation/stylus/Util_to-rem.html
+++ b/docs/documentation/stylus/Util_to-rem.html
@@ -348,7 +348,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/Util_to-str.html b/docs/documentation/stylus/Util_to-str.html
index 0834098..a0ff440 100644
--- a/docs/documentation/stylus/Util_to-str.html
+++ b/docs/documentation/stylus/Util_to-str.html
@@ -305,7 +305,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/breakpoints.styl.html b/docs/documentation/stylus/breakpoints.styl.html
index 82c5bcf..e00f5d5 100644
--- a/docs/documentation/stylus/breakpoints.styl.html
+++ b/docs/documentation/stylus/breakpoints.styl.html
@@ -578,7 +578,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/grid.styl.html b/docs/documentation/stylus/grid.styl.html
index b0d4197..65cb923 100644
--- a/docs/documentation/stylus/grid.styl.html
+++ b/docs/documentation/stylus/grid.styl.html
@@ -249,7 +249,7 @@
Home
Namespaces
-
diff --git a/docs/documentation/stylus/index.html b/docs/documentation/stylus/index.html
index 1009c3d..44a2309 100644
--- a/docs/documentation/stylus/index.html
+++ b/docs/documentation/stylus/index.html
@@ -96,48 +96,71 @@
How Can I Run the Examples?
Either view the examples on GitHub or open
/docs/examples/index.html
locally after checking out the repo.
How Do I Install This?
-Besides just downloading the zip and dropping the package in your project (which I would not recommend doing), you may
-easily use npm or yarn. Since I do not publish to npm yet, you can just reference the Github repo and maybe the version
-tag (which I would recommend) and you are done. To get an idea about the latest version and/or changes, have a look at
-the tags and releases in Github.
+Besides just downloading the zip file and dropping the package in your project (which I would not recommend doing), you
+may easily use NPM or Yarn.
+Currently, I'm publishing to Github packages and not the central NPM registry. If you want to directly install the
+package, not using the repository URL, , you'll have to tell NPM/Yarn, that @oktarintentakel
can be found at GitHub
+packages and not at the central NPM registry and add an access token to use for installing. To do this, add or edit a
+.npmrc
file (either globally in your home folder or next to the package.json
to your project) and add
+@oktarintentakel:registry=https://npm.pkg.github.com
to the file (following GitHub's
+documentation).
+After this, the defined namespace is installed from there automatically. Additionally, we also need a personal access
+token by adding the line //npm.pkg.github.com/:_authToken=TOKEN
(following GitHub's
+documentation).
+Hint: I am aware, that this is rather cumbersome currently, and therefore I currently suggest using the repository
+URL, but I implemented the workflow anyway, awaiting an easier workflow in the future.
NPM
-npm install @oktarintentakel/jig
+npm install @oktarintentakel/jig
or with a version
-npm install @oktarintentakel/jig@X.X.X
+