From 0d5138d244874088fc7b53400a119b598cd25b0c Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sat, 8 Oct 2022 07:55:11 +0100 Subject: [PATCH 1/6] feat(cli): added logic for LSCOLORS --- shell/configurations/default/color.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/shell/configurations/default/color.sh b/shell/configurations/default/color.sh index 55e008c1..2c3fc842 100644 --- a/shell/configurations/default/color.sh +++ b/shell/configurations/default/color.sh @@ -7,11 +7,16 @@ export colorflag='-G' # Enable color output # Enable colored output from ls, etc. on FreeBSD-based systems -unset LSCOLORS +unset LSCOLORS LS_COLORS export CLICOLOR=1 export CLICOLOR_FORCE=1 -export LSCOLORS='GxFxCxDxBxegedabagaced' +# LSCOLORS +if [[ "${OSTYPE}" == "darwin"* ]]; then + export LSCOLORS="GxFxCxDxbxegedabagaced" +else + export LS_COLORS="di=1;36:ln=1;35:so=1;32:pi=1;33:ex=1;31:bd=34;46:cd=34;43:su=30;41:sg=30;46:tw=30;42:ow=34;43" +fi # Tell grep to highlight matches export GREP_OPTIONS='--color=auto' From 7f60b229893dafb312ca1cd92ed808b2b3912a2a Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sat, 8 Oct 2022 11:30:29 +0100 Subject: [PATCH 2/6] fix(tmux): removed right trailing --- shell/paths/tmux/tmux.paths.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/paths/tmux/tmux.paths.sh b/shell/paths/tmux/tmux.paths.sh index e207b0e9..f949a9e1 100644 --- a/shell/paths/tmux/tmux.paths.sh +++ b/shell/paths/tmux/tmux.paths.sh @@ -10,6 +10,6 @@ if command -v 'tmux' >/dev/null; then fi if [[ -z "${TMUX}" ]] && [[ ${UID} != 0 ]]; then - tmux kill-session -t "Dotfiles (v0.2.454)" 2>/dev/null - tmux new-session -t "Dotfiles (v0.2.454)" + tmux kill-session -t 2>/dev/null + tmux new-session -t fi From 14a6beaa819a0717cb9e539063125b053c8e12bc Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sat, 8 Oct 2022 12:03:13 +0100 Subject: [PATCH 3/6] feat(ci): added changesets --- .changeset/README.md | 8 + .changeset/config.json | 7 + package.json | 7 +- pnpm-lock.yaml | 1364 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 1384 insertions(+), 2 deletions(-) create mode 100644 .changeset/README.md create mode 100644 .changeset/config.json diff --git a/.changeset/README.md b/.changeset/README.md new file mode 100644 index 00000000..e5b6d8d6 --- /dev/null +++ b/.changeset/README.md @@ -0,0 +1,8 @@ +# Changesets + +Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works +with multi-package repos, or single-package repos to help you version and publish your code. You can +find the full documentation for it [in our repository](https://github.com/changesets/changesets) + +We have a quick list of common questions to get you started engaging with this project in +[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) diff --git a/.changeset/config.json b/.changeset/config.json new file mode 100644 index 00000000..9d1f81dc --- /dev/null +++ b/.changeset/config.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://unpkg.com/@changesets/config@2.2.0/schema.json", + "access": "public", + "baseBranch": "master", + "changelog": ["@changesets/changelog-github", {"repo": "sebastienrousseau/dotfiles"}], + "fixed": [["dotfiles*"]] +} diff --git a/package.json b/package.json index 16f8c2ec..58ac00fa 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,7 @@ ], "description": "Dotfiles - A set of macOS / Linux and Windows configuration files - Simply designed to fit your shell life.", "devDependencies": { + "@changesets/cli": "^2.25.0", "@types/node": "^16.11.64", "@types/shelljs":"0.8.11", "filesizes": "^0.1.2", @@ -94,14 +95,16 @@ "clean": "rimraf \"dist/\" && tsc --build --clean", "cl:tmp": "rimraf \"./dist/shell/**/*.tmp\"", "build": "pnpm run clean && tsc --build tsconfig.json && pnpm run compile", + "changeset": "changeset", "compile": "chmod 755 \"./bin/compile.sh\" && ./bin/compile.sh", "directory": "mkdir $HOME/.dotfiles", "filesizes": "filesizes ./dist/ > ./dist/filesizes.txt", "help": "chmod 755 \"./bin/dotfiles.sh\" && ./bin/dotfiles.sh", "minify": "jsmin ./shell/index.js > dist/shell/index.js", - "prepare": "pnpm run backup && pnpm run directory && pnpm run copy", + "assemble": "pnpm run backup && pnpm run directory && pnpm run copy", "start": "node dist/shell/index.js", - "test": "echo \"Error: no test specified\" && exit 1" + "test": "echo \"Error: no test specified\" && exit 1", + "version": "pnpm changeset version && pnpm run assemble --no-frozen-lockfile" }, "types": "./dist/index.d.ts", "version": "0.2.454" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 15911798..d5f07433 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,6 +4,7 @@ importers: .: specifiers: + '@changesets/cli': ^2.25.0 '@types/node': ^16.11.64 '@types/shelljs': 0.8.11 filesizes: ^0.1.2 @@ -15,6 +16,7 @@ importers: tsd: 0.24.1 typescript: ^4.8.4 devDependencies: + '@changesets/cli': registry.npmjs.org/@changesets/cli/2.25.0 '@types/node': registry.npmjs.org/@types/node/16.11.64 '@types/shelljs': registry.npmjs.org/@types/shelljs/0.8.11 filesizes: registry.npmjs.org/filesizes/0.1.2 @@ -55,6 +57,256 @@ packages: js-tokens: registry.npmjs.org/js-tokens/4.0.0 dev: true + registry.npmjs.org/@babel/runtime/7.19.0: + resolution: {integrity: sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz} + name: '@babel/runtime' + version: 7.19.0 + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: registry.npmjs.org/regenerator-runtime/0.13.9 + dev: true + + registry.npmjs.org/@changesets/apply-release-plan/6.1.1: + resolution: {integrity: sha512-LaQiP/Wf0zMVR0HNrLQAjz3rsNsr0d/RlnP6Ef4oi8VafOwnY1EoWdK4kssuUJGgNgDyHpomS50dm8CU3D7k7g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/apply-release-plan/-/apply-release-plan-6.1.1.tgz} + name: '@changesets/apply-release-plan' + version: 6.1.1 + dependencies: + '@babel/runtime': registry.npmjs.org/@babel/runtime/7.19.0 + '@changesets/config': registry.npmjs.org/@changesets/config/2.2.0 + '@changesets/get-version-range-type': registry.npmjs.org/@changesets/get-version-range-type/0.3.2 + '@changesets/git': registry.npmjs.org/@changesets/git/1.5.0 + '@changesets/types': registry.npmjs.org/@changesets/types/5.2.0 + '@manypkg/get-packages': registry.npmjs.org/@manypkg/get-packages/1.1.3 + detect-indent: registry.npmjs.org/detect-indent/6.1.0 + fs-extra: registry.npmjs.org/fs-extra/7.0.1 + lodash.startcase: registry.npmjs.org/lodash.startcase/4.4.0 + outdent: registry.npmjs.org/outdent/0.5.0 + prettier: registry.npmjs.org/prettier/2.7.1 + resolve-from: registry.npmjs.org/resolve-from/5.0.0 + semver: registry.npmjs.org/semver/5.7.1 + dev: true + + registry.npmjs.org/@changesets/assemble-release-plan/5.2.2: + resolution: {integrity: sha512-B1qxErQd85AeZgZFZw2bDKyOfdXHhG+X5S+W3Da2yCem8l/pRy4G/S7iOpEcMwg6lH8q2ZhgbZZwZ817D+aLuQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/assemble-release-plan/-/assemble-release-plan-5.2.2.tgz} + name: '@changesets/assemble-release-plan' + version: 5.2.2 + dependencies: + '@babel/runtime': registry.npmjs.org/@babel/runtime/7.19.0 + '@changesets/errors': registry.npmjs.org/@changesets/errors/0.1.4 + '@changesets/get-dependents-graph': registry.npmjs.org/@changesets/get-dependents-graph/1.3.4 + '@changesets/types': registry.npmjs.org/@changesets/types/5.2.0 + '@manypkg/get-packages': registry.npmjs.org/@manypkg/get-packages/1.1.3 + semver: registry.npmjs.org/semver/5.7.1 + dev: true + + registry.npmjs.org/@changesets/changelog-git/0.1.13: + resolution: {integrity: sha512-zvJ50Q+EUALzeawAxax6nF2WIcSsC5PwbuLeWkckS8ulWnuPYx8Fn/Sjd3rF46OzeKA8t30loYYV6TIzp4DIdg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/changelog-git/-/changelog-git-0.1.13.tgz} + name: '@changesets/changelog-git' + version: 0.1.13 + dependencies: + '@changesets/types': registry.npmjs.org/@changesets/types/5.2.0 + dev: true + + registry.npmjs.org/@changesets/cli/2.25.0: + resolution: {integrity: sha512-Svu5KD2enurVHGEEzCRlaojrHjVYgF9srmMP9VQSy9c1TspX6C9lDPpulsSNIjYY9BuU/oiWpjBgR7RI9eQiAA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/cli/-/cli-2.25.0.tgz} + name: '@changesets/cli' + version: 2.25.0 + hasBin: true + dependencies: + '@babel/runtime': registry.npmjs.org/@babel/runtime/7.19.0 + '@changesets/apply-release-plan': registry.npmjs.org/@changesets/apply-release-plan/6.1.1 + '@changesets/assemble-release-plan': registry.npmjs.org/@changesets/assemble-release-plan/5.2.2 + '@changesets/changelog-git': registry.npmjs.org/@changesets/changelog-git/0.1.13 + '@changesets/config': registry.npmjs.org/@changesets/config/2.2.0 + '@changesets/errors': registry.npmjs.org/@changesets/errors/0.1.4 + '@changesets/get-dependents-graph': registry.npmjs.org/@changesets/get-dependents-graph/1.3.4 + '@changesets/get-release-plan': registry.npmjs.org/@changesets/get-release-plan/3.0.15 + '@changesets/git': registry.npmjs.org/@changesets/git/1.5.0 + '@changesets/logger': registry.npmjs.org/@changesets/logger/0.0.5 + '@changesets/pre': registry.npmjs.org/@changesets/pre/1.0.13 + '@changesets/read': registry.npmjs.org/@changesets/read/0.5.8 + '@changesets/types': registry.npmjs.org/@changesets/types/5.2.0 + '@changesets/write': registry.npmjs.org/@changesets/write/0.2.1 + '@manypkg/get-packages': registry.npmjs.org/@manypkg/get-packages/1.1.3 + '@types/is-ci': registry.npmjs.org/@types/is-ci/3.0.0 + '@types/semver': registry.npmjs.org/@types/semver/6.2.3 + ansi-colors: registry.npmjs.org/ansi-colors/4.1.3 + chalk: registry.npmjs.org/chalk/2.4.2 + enquirer: registry.npmjs.org/enquirer/2.3.6 + external-editor: registry.npmjs.org/external-editor/3.1.0 + fs-extra: registry.npmjs.org/fs-extra/7.0.1 + human-id: registry.npmjs.org/human-id/1.0.2 + is-ci: registry.npmjs.org/is-ci/3.0.1 + meow: registry.npmjs.org/meow/6.1.1 + outdent: registry.npmjs.org/outdent/0.5.0 + p-limit: registry.npmjs.org/p-limit/2.3.0 + preferred-pm: registry.npmjs.org/preferred-pm/3.0.3 + resolve-from: registry.npmjs.org/resolve-from/5.0.0 + semver: registry.npmjs.org/semver/5.7.1 + spawndamnit: registry.npmjs.org/spawndamnit/2.0.0 + term-size: registry.npmjs.org/term-size/2.2.1 + tty-table: registry.npmjs.org/tty-table/4.1.6 + dev: true + + registry.npmjs.org/@changesets/config/2.2.0: + resolution: {integrity: sha512-GGaokp3nm5FEDk/Fv2PCRcQCOxGKKPRZ7prcMqxEr7VSsG75MnChQE8plaW1k6V8L2bJE+jZWiRm19LbnproOw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/config/-/config-2.2.0.tgz} + name: '@changesets/config' + version: 2.2.0 + dependencies: + '@changesets/errors': registry.npmjs.org/@changesets/errors/0.1.4 + '@changesets/get-dependents-graph': registry.npmjs.org/@changesets/get-dependents-graph/1.3.4 + '@changesets/logger': registry.npmjs.org/@changesets/logger/0.0.5 + '@changesets/types': registry.npmjs.org/@changesets/types/5.2.0 + '@manypkg/get-packages': registry.npmjs.org/@manypkg/get-packages/1.1.3 + fs-extra: registry.npmjs.org/fs-extra/7.0.1 + micromatch: registry.npmjs.org/micromatch/4.0.5 + dev: true + + registry.npmjs.org/@changesets/errors/0.1.4: + resolution: {integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/errors/-/errors-0.1.4.tgz} + name: '@changesets/errors' + version: 0.1.4 + dependencies: + extendable-error: registry.npmjs.org/extendable-error/0.1.7 + dev: true + + registry.npmjs.org/@changesets/get-dependents-graph/1.3.4: + resolution: {integrity: sha512-+C4AOrrFY146ydrgKOo5vTZfj7vetNu1tWshOID+UjPUU9afYGDXI8yLnAeib1ffeBXV3TuGVcyphKpJ3cKe+A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/get-dependents-graph/-/get-dependents-graph-1.3.4.tgz} + name: '@changesets/get-dependents-graph' + version: 1.3.4 + dependencies: + '@changesets/types': registry.npmjs.org/@changesets/types/5.2.0 + '@manypkg/get-packages': registry.npmjs.org/@manypkg/get-packages/1.1.3 + chalk: registry.npmjs.org/chalk/2.4.2 + fs-extra: registry.npmjs.org/fs-extra/7.0.1 + semver: registry.npmjs.org/semver/5.7.1 + dev: true + + registry.npmjs.org/@changesets/get-release-plan/3.0.15: + resolution: {integrity: sha512-W1tFwxE178/en+zSj/Nqbc3mvz88mcdqUMJhRzN1jDYqN3QI4ifVaRF9mcWUU+KI0gyYEtYR65tour690PqTcA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/get-release-plan/-/get-release-plan-3.0.15.tgz} + name: '@changesets/get-release-plan' + version: 3.0.15 + dependencies: + '@babel/runtime': registry.npmjs.org/@babel/runtime/7.19.0 + '@changesets/assemble-release-plan': registry.npmjs.org/@changesets/assemble-release-plan/5.2.2 + '@changesets/config': registry.npmjs.org/@changesets/config/2.2.0 + '@changesets/pre': registry.npmjs.org/@changesets/pre/1.0.13 + '@changesets/read': registry.npmjs.org/@changesets/read/0.5.8 + '@changesets/types': registry.npmjs.org/@changesets/types/5.2.0 + '@manypkg/get-packages': registry.npmjs.org/@manypkg/get-packages/1.1.3 + dev: true + + registry.npmjs.org/@changesets/get-version-range-type/0.3.2: + resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/get-version-range-type/-/get-version-range-type-0.3.2.tgz} + name: '@changesets/get-version-range-type' + version: 0.3.2 + dev: true + + registry.npmjs.org/@changesets/git/1.5.0: + resolution: {integrity: sha512-Xo8AT2G7rQJSwV87c8PwMm6BAc98BnufRMsML7m7Iw8Or18WFvFmxqG5aOL5PBvhgq9KrKvaeIBNIymracSuHg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/git/-/git-1.5.0.tgz} + name: '@changesets/git' + version: 1.5.0 + dependencies: + '@babel/runtime': registry.npmjs.org/@babel/runtime/7.19.0 + '@changesets/errors': registry.npmjs.org/@changesets/errors/0.1.4 + '@changesets/types': registry.npmjs.org/@changesets/types/5.2.0 + '@manypkg/get-packages': registry.npmjs.org/@manypkg/get-packages/1.1.3 + is-subdir: registry.npmjs.org/is-subdir/1.2.0 + spawndamnit: registry.npmjs.org/spawndamnit/2.0.0 + dev: true + + registry.npmjs.org/@changesets/logger/0.0.5: + resolution: {integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/logger/-/logger-0.0.5.tgz} + name: '@changesets/logger' + version: 0.0.5 + dependencies: + chalk: registry.npmjs.org/chalk/2.4.2 + dev: true + + registry.npmjs.org/@changesets/parse/0.3.15: + resolution: {integrity: sha512-3eDVqVuBtp63i+BxEWHPFj2P1s3syk0PTrk2d94W9JD30iG+OER0Y6n65TeLlY8T2yB9Fvj6Ev5Gg0+cKe/ZUA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/parse/-/parse-0.3.15.tgz} + name: '@changesets/parse' + version: 0.3.15 + dependencies: + '@changesets/types': registry.npmjs.org/@changesets/types/5.2.0 + js-yaml: registry.npmjs.org/js-yaml/3.14.1 + dev: true + + registry.npmjs.org/@changesets/pre/1.0.13: + resolution: {integrity: sha512-jrZc766+kGZHDukjKhpBXhBJjVQMied4Fu076y9guY1D3H622NOw8AQaLV3oQsDtKBTrT2AUFjt9Z2Y9Qx+GfA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/pre/-/pre-1.0.13.tgz} + name: '@changesets/pre' + version: 1.0.13 + dependencies: + '@babel/runtime': registry.npmjs.org/@babel/runtime/7.19.0 + '@changesets/errors': registry.npmjs.org/@changesets/errors/0.1.4 + '@changesets/types': registry.npmjs.org/@changesets/types/5.2.0 + '@manypkg/get-packages': registry.npmjs.org/@manypkg/get-packages/1.1.3 + fs-extra: registry.npmjs.org/fs-extra/7.0.1 + dev: true + + registry.npmjs.org/@changesets/read/0.5.8: + resolution: {integrity: sha512-eYaNfxemgX7f7ELC58e7yqQICW5FB7V+bd1lKt7g57mxUrTveYME+JPaBPpYx02nP53XI6CQp6YxnR9NfmFPKw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/read/-/read-0.5.8.tgz} + name: '@changesets/read' + version: 0.5.8 + dependencies: + '@babel/runtime': registry.npmjs.org/@babel/runtime/7.19.0 + '@changesets/git': registry.npmjs.org/@changesets/git/1.5.0 + '@changesets/logger': registry.npmjs.org/@changesets/logger/0.0.5 + '@changesets/parse': registry.npmjs.org/@changesets/parse/0.3.15 + '@changesets/types': registry.npmjs.org/@changesets/types/5.2.0 + chalk: registry.npmjs.org/chalk/2.4.2 + fs-extra: registry.npmjs.org/fs-extra/7.0.1 + p-filter: registry.npmjs.org/p-filter/2.1.0 + dev: true + + registry.npmjs.org/@changesets/types/4.1.0: + resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/types/-/types-4.1.0.tgz} + name: '@changesets/types' + version: 4.1.0 + dev: true + + registry.npmjs.org/@changesets/types/5.2.0: + resolution: {integrity: sha512-km/66KOqJC+eicZXsm2oq8A8bVTSpkZJ60iPV/Nl5Z5c7p9kk8xxh6XGRTlnludHldxOOfudhnDN2qPxtHmXzA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/types/-/types-5.2.0.tgz} + name: '@changesets/types' + version: 5.2.0 + dev: true + + registry.npmjs.org/@changesets/write/0.2.1: + resolution: {integrity: sha512-KUd49nt2fnYdGixIqTi1yVE1nAoZYUMdtB3jBfp77IMqjZ65hrmZE5HdccDlTeClZN0420ffpnfET3zzeY8pdw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@changesets/write/-/write-0.2.1.tgz} + name: '@changesets/write' + version: 0.2.1 + dependencies: + '@babel/runtime': registry.npmjs.org/@babel/runtime/7.19.0 + '@changesets/types': registry.npmjs.org/@changesets/types/5.2.0 + fs-extra: registry.npmjs.org/fs-extra/7.0.1 + human-id: registry.npmjs.org/human-id/1.0.2 + prettier: registry.npmjs.org/prettier/2.7.1 + dev: true + + registry.npmjs.org/@manypkg/find-root/1.1.0: + resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@manypkg/find-root/-/find-root-1.1.0.tgz} + name: '@manypkg/find-root' + version: 1.1.0 + dependencies: + '@babel/runtime': registry.npmjs.org/@babel/runtime/7.19.0 + '@types/node': registry.npmjs.org/@types/node/12.20.55 + find-up: registry.npmjs.org/find-up/4.1.0 + fs-extra: registry.npmjs.org/fs-extra/8.1.0 + dev: true + + registry.npmjs.org/@manypkg/get-packages/1.1.3: + resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@manypkg/get-packages/-/get-packages-1.1.3.tgz} + name: '@manypkg/get-packages' + version: 1.1.3 + dependencies: + '@babel/runtime': registry.npmjs.org/@babel/runtime/7.19.0 + '@changesets/types': registry.npmjs.org/@changesets/types/4.1.0 + '@manypkg/find-root': registry.npmjs.org/@manypkg/find-root/1.1.0 + fs-extra: registry.npmjs.org/fs-extra/8.1.0 + globby: registry.npmjs.org/globby/11.1.0 + read-yaml-file: registry.npmjs.org/read-yaml-file/1.1.0 + dev: true + registry.npmjs.org/@nodelib/fs.scandir/2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz} name: '@nodelib/fs.scandir' @@ -112,6 +364,14 @@ packages: '@types/node': registry.npmjs.org/@types/node/16.11.64 dev: true + registry.npmjs.org/@types/is-ci/3.0.0: + resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@types/is-ci/-/is-ci-3.0.0.tgz} + name: '@types/is-ci' + version: 3.0.0 + dependencies: + ci-info: registry.npmjs.org/ci-info/3.4.0 + dev: true + registry.npmjs.org/@types/json-schema/7.0.11: resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz} name: '@types/json-schema' @@ -130,6 +390,12 @@ packages: version: 1.2.2 dev: true + registry.npmjs.org/@types/node/12.20.55: + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz} + name: '@types/node' + version: 12.20.55 + dev: true + registry.npmjs.org/@types/node/16.11.64: resolution: {integrity: sha512-z5hPTlVFzNwtJ2LNozTpJcD1Cu44c4LNuzaq1mwxmiHWQh2ULdR6Vjwo1UGldzRpzL0yUEdZddnfqGW2G70z6Q==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@types/node/-/node-16.11.64.tgz} name: '@types/node' @@ -142,6 +408,12 @@ packages: version: 2.4.1 dev: true + registry.npmjs.org/@types/semver/6.2.3: + resolution: {integrity: sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@types/semver/-/semver-6.2.3.tgz} + name: '@types/semver' + version: 6.2.3 + dev: true + registry.npmjs.org/@types/shelljs/0.8.11: resolution: {integrity: sha512-x9yaMvEh5BEaZKeVQC4vp3l+QoFj3BXcd4aYfuKSzIIyihjdVARAadYy3SMNIz0WCCdS2vB9JL/U6GQk5PaxQw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/@types/shelljs/-/shelljs-0.8.11.tgz} name: '@types/shelljs' @@ -151,6 +423,13 @@ packages: '@types/node': registry.npmjs.org/@types/node/16.11.64 dev: true + registry.npmjs.org/ansi-colors/4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz} + name: ansi-colors + version: 4.1.3 + engines: {node: '>=6'} + dev: true + registry.npmjs.org/ansi-escapes/4.3.2: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz} name: ansi-escapes @@ -185,6 +464,14 @@ packages: color-convert: registry.npmjs.org/color-convert/2.0.1 dev: true + registry.npmjs.org/argparse/1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz} + name: argparse + version: 1.0.10 + dependencies: + sprintf-js: registry.npmjs.org/sprintf-js/1.0.3 + dev: true + registry.npmjs.org/array-union/2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz} name: array-union @@ -192,6 +479,18 @@ packages: engines: {node: '>=8'} dev: true + registry.npmjs.org/array.prototype.flat/1.3.0: + resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz} + name: array.prototype.flat + version: 1.3.0 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + define-properties: registry.npmjs.org/define-properties/1.1.4 + es-abstract: registry.npmjs.org/es-abstract/1.20.4 + es-shim-unscopables: registry.npmjs.org/es-shim-unscopables/1.0.0 + dev: true + registry.npmjs.org/arrify/1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz} name: arrify @@ -205,6 +504,15 @@ packages: version: 1.0.2 dev: true + registry.npmjs.org/better-path-resolve/1.0.0: + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/better-path-resolve/-/better-path-resolve-1.0.0.tgz} + name: better-path-resolve + version: 1.0.0 + engines: {node: '>=4'} + dependencies: + is-windows: registry.npmjs.org/is-windows/1.0.2 + dev: true + registry.npmjs.org/brace-expansion/1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz} name: brace-expansion @@ -223,6 +531,23 @@ packages: fill-range: registry.npmjs.org/fill-range/7.0.1 dev: true + registry.npmjs.org/breakword/1.0.5: + resolution: {integrity: sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/breakword/-/breakword-1.0.5.tgz} + name: breakword + version: 1.0.5 + dependencies: + wcwidth: registry.npmjs.org/wcwidth/1.0.1 + dev: true + + registry.npmjs.org/call-bind/1.0.2: + resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz} + name: call-bind + version: 1.0.2 + dependencies: + function-bind: registry.npmjs.org/function-bind/1.1.1 + get-intrinsic: registry.npmjs.org/get-intrinsic/1.1.3 + dev: true + registry.npmjs.org/camelcase-keys/6.2.2: resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz} name: camelcase-keys @@ -272,6 +597,18 @@ packages: supports-color: registry.npmjs.org/supports-color/7.2.0 dev: true + registry.npmjs.org/chardet/0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz} + name: chardet + version: 0.7.0 + dev: true + + registry.npmjs.org/ci-info/3.4.0: + resolution: {integrity: sha512-t5QdPT5jq3o262DOQ8zA6E1tlH2upmUc4Hlvrbx1pGYJuiiHl7O7rvVNI+l8HTVhd/q3Qc9vqimkNk5yiXsAug==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/ci-info/-/ci-info-3.4.0.tgz} + name: ci-info + version: 3.4.0 + dev: true + registry.npmjs.org/cli-table/0.3.11: resolution: {integrity: sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/cli-table/-/cli-table-0.3.11.tgz} name: cli-table @@ -281,6 +618,34 @@ packages: colors: registry.npmjs.org/colors/1.0.3 dev: true + registry.npmjs.org/cliui/6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz} + name: cliui + version: 6.0.0 + dependencies: + string-width: registry.npmjs.org/string-width/4.2.3 + strip-ansi: registry.npmjs.org/strip-ansi/6.0.1 + wrap-ansi: registry.npmjs.org/wrap-ansi/6.2.0 + dev: true + + registry.npmjs.org/cliui/8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz} + name: cliui + version: 8.0.1 + engines: {node: '>=12'} + dependencies: + string-width: registry.npmjs.org/string-width/4.2.3 + strip-ansi: registry.npmjs.org/strip-ansi/6.0.1 + wrap-ansi: registry.npmjs.org/wrap-ansi/7.0.0 + dev: true + + registry.npmjs.org/clone/1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/clone/-/clone-1.0.4.tgz} + name: clone + version: 1.0.4 + engines: {node: '>=0.8'} + dev: true + registry.npmjs.org/color-convert/1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz} name: color-convert @@ -330,6 +695,46 @@ packages: version: 0.0.1 dev: true + registry.npmjs.org/cross-spawn/5.1.0: + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz} + name: cross-spawn + version: 5.1.0 + dependencies: + lru-cache: registry.npmjs.org/lru-cache/4.1.5 + shebang-command: registry.npmjs.org/shebang-command/1.2.0 + which: registry.npmjs.org/which/1.3.1 + dev: true + + registry.npmjs.org/csv-generate/3.4.3: + resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/csv-generate/-/csv-generate-3.4.3.tgz} + name: csv-generate + version: 3.4.3 + dev: true + + registry.npmjs.org/csv-parse/4.16.3: + resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/csv-parse/-/csv-parse-4.16.3.tgz} + name: csv-parse + version: 4.16.3 + dev: true + + registry.npmjs.org/csv-stringify/5.6.5: + resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/csv-stringify/-/csv-stringify-5.6.5.tgz} + name: csv-stringify + version: 5.6.5 + dev: true + + registry.npmjs.org/csv/5.5.3: + resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/csv/-/csv-5.5.3.tgz} + name: csv + version: 5.5.3 + engines: {node: '>= 0.1.90'} + dependencies: + csv-generate: registry.npmjs.org/csv-generate/3.4.3 + csv-parse: registry.npmjs.org/csv-parse/4.16.3 + csv-stringify: registry.npmjs.org/csv-stringify/5.6.5 + stream-transform: registry.npmjs.org/stream-transform/2.1.3 + dev: true + registry.npmjs.org/decamelize-keys/1.1.0: resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz} name: decamelize-keys @@ -347,6 +752,31 @@ packages: engines: {node: '>=0.10.0'} dev: true + registry.npmjs.org/defaults/1.0.3: + resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz} + name: defaults + version: 1.0.3 + dependencies: + clone: registry.npmjs.org/clone/1.0.4 + dev: true + + registry.npmjs.org/define-properties/1.1.4: + resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz} + name: define-properties + version: 1.1.4 + engines: {node: '>= 0.4'} + dependencies: + has-property-descriptors: registry.npmjs.org/has-property-descriptors/1.0.0 + object-keys: registry.npmjs.org/object-keys/1.1.1 + dev: true + + registry.npmjs.org/detect-indent/6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz} + name: detect-indent + version: 6.1.0 + engines: {node: '>=8'} + dev: true + registry.npmjs.org/dir-glob/3.0.1: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz} name: dir-glob @@ -368,6 +798,15 @@ packages: version: 8.0.0 dev: true + registry.npmjs.org/enquirer/2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz} + name: enquirer + version: 2.3.6 + engines: {node: '>=8.6'} + dependencies: + ansi-colors: registry.npmjs.org/ansi-colors/4.1.3 + dev: true + registry.npmjs.org/error-ex/1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz} name: error-ex @@ -376,6 +815,64 @@ packages: is-arrayish: registry.npmjs.org/is-arrayish/0.2.1 dev: true + registry.npmjs.org/es-abstract/1.20.4: + resolution: {integrity: sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz} + name: es-abstract + version: 1.20.4 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + es-to-primitive: registry.npmjs.org/es-to-primitive/1.2.1 + function-bind: registry.npmjs.org/function-bind/1.1.1 + function.prototype.name: registry.npmjs.org/function.prototype.name/1.1.5 + get-intrinsic: registry.npmjs.org/get-intrinsic/1.1.3 + get-symbol-description: registry.npmjs.org/get-symbol-description/1.0.0 + has: registry.npmjs.org/has/1.0.3 + has-property-descriptors: registry.npmjs.org/has-property-descriptors/1.0.0 + has-symbols: registry.npmjs.org/has-symbols/1.0.3 + internal-slot: registry.npmjs.org/internal-slot/1.0.3 + is-callable: registry.npmjs.org/is-callable/1.2.7 + is-negative-zero: registry.npmjs.org/is-negative-zero/2.0.2 + is-regex: registry.npmjs.org/is-regex/1.1.4 + is-shared-array-buffer: registry.npmjs.org/is-shared-array-buffer/1.0.2 + is-string: registry.npmjs.org/is-string/1.0.7 + is-weakref: registry.npmjs.org/is-weakref/1.0.2 + object-inspect: registry.npmjs.org/object-inspect/1.12.2 + object-keys: registry.npmjs.org/object-keys/1.1.1 + object.assign: registry.npmjs.org/object.assign/4.1.4 + regexp.prototype.flags: registry.npmjs.org/regexp.prototype.flags/1.4.3 + safe-regex-test: registry.npmjs.org/safe-regex-test/1.0.0 + string.prototype.trimend: registry.npmjs.org/string.prototype.trimend/1.0.5 + string.prototype.trimstart: registry.npmjs.org/string.prototype.trimstart/1.0.5 + unbox-primitive: registry.npmjs.org/unbox-primitive/1.0.2 + dev: true + + registry.npmjs.org/es-shim-unscopables/1.0.0: + resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz} + name: es-shim-unscopables + version: 1.0.0 + dependencies: + has: registry.npmjs.org/has/1.0.3 + dev: true + + registry.npmjs.org/es-to-primitive/1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz} + name: es-to-primitive + version: 1.2.1 + engines: {node: '>= 0.4'} + dependencies: + is-callable: registry.npmjs.org/is-callable/1.2.7 + is-date-object: registry.npmjs.org/is-date-object/1.0.5 + is-symbol: registry.npmjs.org/is-symbol/1.0.4 + dev: true + + registry.npmjs.org/escalade/3.1.1: + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz} + name: escalade + version: 3.1.1 + engines: {node: '>=6'} + dev: true + registry.npmjs.org/escape-string-regexp/1.0.5: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz} name: escape-string-regexp @@ -405,6 +902,31 @@ packages: version: 1.1.235 dev: true + registry.npmjs.org/esprima/4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz} + name: esprima + version: 4.0.1 + engines: {node: '>=4'} + hasBin: true + dev: true + + registry.npmjs.org/extendable-error/0.1.7: + resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/extendable-error/-/extendable-error-0.1.7.tgz} + name: extendable-error + version: 0.1.7 + dev: true + + registry.npmjs.org/external-editor/3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz} + name: external-editor + version: 3.1.0 + engines: {node: '>=4'} + dependencies: + chardet: registry.npmjs.org/chardet/0.7.0 + iconv-lite: registry.npmjs.org/iconv-lite/0.4.24 + tmp: registry.npmjs.org/tmp/0.0.33 + dev: true + registry.npmjs.org/fast-glob/3.2.12: resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz} name: fast-glob @@ -458,6 +980,47 @@ packages: path-exists: registry.npmjs.org/path-exists/4.0.0 dev: true + registry.npmjs.org/find-up/5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz} + name: find-up + version: 5.0.0 + engines: {node: '>=10'} + dependencies: + locate-path: registry.npmjs.org/locate-path/6.0.0 + path-exists: registry.npmjs.org/path-exists/4.0.0 + dev: true + + registry.npmjs.org/find-yarn-workspace-root2/1.2.16: + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz} + name: find-yarn-workspace-root2 + version: 1.2.16 + dependencies: + micromatch: registry.npmjs.org/micromatch/4.0.5 + pkg-dir: registry.npmjs.org/pkg-dir/4.2.0 + dev: true + + registry.npmjs.org/fs-extra/7.0.1: + resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz} + name: fs-extra + version: 7.0.1 + engines: {node: '>=6 <7 || >=8'} + dependencies: + graceful-fs: registry.npmjs.org/graceful-fs/4.2.10 + jsonfile: registry.npmjs.org/jsonfile/4.0.0 + universalify: registry.npmjs.org/universalify/0.1.2 + dev: true + + registry.npmjs.org/fs-extra/8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz} + name: fs-extra + version: 8.1.0 + engines: {node: '>=6 <7 || >=8'} + dependencies: + graceful-fs: registry.npmjs.org/graceful-fs/4.2.10 + jsonfile: registry.npmjs.org/jsonfile/4.0.0 + universalify: registry.npmjs.org/universalify/0.1.2 + dev: true + registry.npmjs.org/fs.realpath/1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz} name: fs.realpath @@ -470,6 +1033,51 @@ packages: version: 1.1.1 dev: true + registry.npmjs.org/function.prototype.name/1.1.5: + resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz} + name: function.prototype.name + version: 1.1.5 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + define-properties: registry.npmjs.org/define-properties/1.1.4 + es-abstract: registry.npmjs.org/es-abstract/1.20.4 + functions-have-names: registry.npmjs.org/functions-have-names/1.2.3 + dev: true + + registry.npmjs.org/functions-have-names/1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz} + name: functions-have-names + version: 1.2.3 + dev: true + + registry.npmjs.org/get-caller-file/2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz} + name: get-caller-file + version: 2.0.5 + engines: {node: 6.* || 8.* || >= 10.*} + dev: true + + registry.npmjs.org/get-intrinsic/1.1.3: + resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz} + name: get-intrinsic + version: 1.1.3 + dependencies: + function-bind: registry.npmjs.org/function-bind/1.1.1 + has: registry.npmjs.org/has/1.0.3 + has-symbols: registry.npmjs.org/has-symbols/1.0.3 + dev: true + + registry.npmjs.org/get-symbol-description/1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz} + name: get-symbol-description + version: 1.0.0 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + get-intrinsic: registry.npmjs.org/get-intrinsic/1.1.3 + dev: true + registry.npmjs.org/glob-parent/5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz} name: glob-parent @@ -506,6 +1114,18 @@ packages: slash: registry.npmjs.org/slash/3.0.0 dev: true + registry.npmjs.org/graceful-fs/4.2.10: + resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz} + name: graceful-fs + version: 4.2.10 + dev: true + + registry.npmjs.org/grapheme-splitter/1.0.4: + resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz} + name: grapheme-splitter + version: 1.0.4 + dev: true + registry.npmjs.org/gzip-size/5.1.1: resolution: {integrity: sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz} name: gzip-size @@ -523,6 +1143,12 @@ packages: engines: {node: '>=6'} dev: true + registry.npmjs.org/has-bigints/1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz} + name: has-bigints + version: 1.0.2 + dev: true + registry.npmjs.org/has-flag/3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz} name: has-flag @@ -537,6 +1163,30 @@ packages: engines: {node: '>=8'} dev: true + registry.npmjs.org/has-property-descriptors/1.0.0: + resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz} + name: has-property-descriptors + version: 1.0.0 + dependencies: + get-intrinsic: registry.npmjs.org/get-intrinsic/1.1.3 + dev: true + + registry.npmjs.org/has-symbols/1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz} + name: has-symbols + version: 1.0.3 + engines: {node: '>= 0.4'} + dev: true + + registry.npmjs.org/has-tostringtag/1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz} + name: has-tostringtag + version: 1.0.0 + engines: {node: '>= 0.4'} + dependencies: + has-symbols: registry.npmjs.org/has-symbols/1.0.3 + dev: true + registry.npmjs.org/has/1.0.3: resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/has/-/has-1.0.3.tgz} name: has @@ -561,6 +1211,21 @@ packages: lru-cache: registry.npmjs.org/lru-cache/6.0.0 dev: true + registry.npmjs.org/human-id/1.0.2: + resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/human-id/-/human-id-1.0.2.tgz} + name: human-id + version: 1.0.2 + dev: true + + registry.npmjs.org/iconv-lite/0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz} + name: iconv-lite + version: 0.4.24 + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: registry.npmjs.org/safer-buffer/2.1.2 + dev: true + registry.npmjs.org/ignore/5.2.0: resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz} name: ignore @@ -590,6 +1255,17 @@ packages: version: 2.0.4 dev: true + registry.npmjs.org/internal-slot/1.0.3: + resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz} + name: internal-slot + version: 1.0.3 + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: registry.npmjs.org/get-intrinsic/1.1.3 + has: registry.npmjs.org/has/1.0.3 + side-channel: registry.npmjs.org/side-channel/1.0.4 + dev: true + registry.npmjs.org/interpret/1.4.0: resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz} name: interpret @@ -610,6 +1286,40 @@ packages: version: 0.2.1 dev: true + registry.npmjs.org/is-bigint/1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz} + name: is-bigint + version: 1.0.4 + dependencies: + has-bigints: registry.npmjs.org/has-bigints/1.0.2 + dev: true + + registry.npmjs.org/is-boolean-object/1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz} + name: is-boolean-object + version: 1.1.2 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + has-tostringtag: registry.npmjs.org/has-tostringtag/1.0.0 + dev: true + + registry.npmjs.org/is-callable/1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz} + name: is-callable + version: 1.2.7 + engines: {node: '>= 0.4'} + dev: true + + registry.npmjs.org/is-ci/3.0.1: + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz} + name: is-ci + version: 3.0.1 + hasBin: true + dependencies: + ci-info: registry.npmjs.org/ci-info/3.4.0 + dev: true + registry.npmjs.org/is-core-module/2.10.0: resolution: {integrity: sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz} name: is-core-module @@ -618,6 +1328,15 @@ packages: has: registry.npmjs.org/has/1.0.3 dev: true + registry.npmjs.org/is-date-object/1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz} + name: is-date-object + version: 1.0.5 + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: registry.npmjs.org/has-tostringtag/1.0.0 + dev: true + registry.npmjs.org/is-extglob/2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz} name: is-extglob @@ -641,6 +1360,22 @@ packages: is-extglob: registry.npmjs.org/is-extglob/2.1.1 dev: true + registry.npmjs.org/is-negative-zero/2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz} + name: is-negative-zero + version: 2.0.2 + engines: {node: '>= 0.4'} + dev: true + + registry.npmjs.org/is-number-object/1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz} + name: is-number-object + version: 1.0.7 + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: registry.npmjs.org/has-tostringtag/1.0.0 + dev: true + registry.npmjs.org/is-number/7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz} name: is-number @@ -655,6 +1390,51 @@ packages: engines: {node: '>=0.10.0'} dev: true + registry.npmjs.org/is-regex/1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz} + name: is-regex + version: 1.1.4 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + has-tostringtag: registry.npmjs.org/has-tostringtag/1.0.0 + dev: true + + registry.npmjs.org/is-shared-array-buffer/1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz} + name: is-shared-array-buffer + version: 1.0.2 + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + dev: true + + registry.npmjs.org/is-string/1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz} + name: is-string + version: 1.0.7 + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: registry.npmjs.org/has-tostringtag/1.0.0 + dev: true + + registry.npmjs.org/is-subdir/1.2.0: + resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-subdir/-/is-subdir-1.2.0.tgz} + name: is-subdir + version: 1.2.0 + engines: {node: '>=4'} + dependencies: + better-path-resolve: registry.npmjs.org/better-path-resolve/1.0.0 + dev: true + + registry.npmjs.org/is-symbol/1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz} + name: is-symbol + version: 1.0.4 + engines: {node: '>= 0.4'} + dependencies: + has-symbols: registry.npmjs.org/has-symbols/1.0.3 + dev: true + registry.npmjs.org/is-unicode-supported/0.1.0: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz} name: is-unicode-supported @@ -662,12 +1442,43 @@ packages: engines: {node: '>=10'} dev: true + registry.npmjs.org/is-weakref/1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz} + name: is-weakref + version: 1.0.2 + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + dev: true + + registry.npmjs.org/is-windows/1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz} + name: is-windows + version: 1.0.2 + engines: {node: '>=0.10.0'} + dev: true + + registry.npmjs.org/isexe/2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz} + name: isexe + version: 2.0.0 + dev: true + registry.npmjs.org/js-tokens/4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz} name: js-tokens version: 4.0.0 dev: true + registry.npmjs.org/js-yaml/3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz} + name: js-yaml + version: 3.14.1 + hasBin: true + dependencies: + argparse: registry.npmjs.org/argparse/1.0.10 + esprima: registry.npmjs.org/esprima/4.0.1 + dev: true + registry.npmjs.org/jsmin/1.0.1: resolution: {integrity: sha512-OPuL5X/bFKgVdMvEIX3hnpx3jbVpFCrEM8pKPXjFkZUqg521r41ijdyTz7vACOhW6o1neVlcLyd+wkbK5fNHRg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/jsmin/-/jsmin-1.0.1.tgz} name: jsmin @@ -682,6 +1493,14 @@ packages: version: 2.3.1 dev: true + registry.npmjs.org/jsonfile/4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz} + name: jsonfile + version: 4.0.0 + optionalDependencies: + graceful-fs: registry.npmjs.org/graceful-fs/4.2.10 + dev: true + registry.npmjs.org/kind-of/6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz} name: kind-of @@ -689,12 +1508,31 @@ packages: engines: {node: '>=0.10.0'} dev: true + registry.npmjs.org/kleur/4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz} + name: kleur + version: 4.1.5 + engines: {node: '>=6'} + dev: true + registry.npmjs.org/lines-and-columns/1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz} name: lines-and-columns version: 1.2.4 dev: true + registry.npmjs.org/load-yaml-file/0.2.0: + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/load-yaml-file/-/load-yaml-file-0.2.0.tgz} + name: load-yaml-file + version: 0.2.0 + engines: {node: '>=6'} + dependencies: + graceful-fs: registry.npmjs.org/graceful-fs/4.2.10 + js-yaml: registry.npmjs.org/js-yaml/3.14.1 + pify: registry.npmjs.org/pify/4.0.1 + strip-bom: registry.npmjs.org/strip-bom/3.0.0 + dev: true + registry.npmjs.org/locate-path/5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz} name: locate-path @@ -704,6 +1542,21 @@ packages: p-locate: registry.npmjs.org/p-locate/4.1.0 dev: true + registry.npmjs.org/locate-path/6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz} + name: locate-path + version: 6.0.0 + engines: {node: '>=10'} + dependencies: + p-locate: registry.npmjs.org/p-locate/5.0.0 + dev: true + + registry.npmjs.org/lodash.startcase/4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz} + name: lodash.startcase + version: 4.4.0 + dev: true + registry.npmjs.org/log-symbols/4.1.0: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz} name: log-symbols @@ -714,6 +1567,15 @@ packages: is-unicode-supported: registry.npmjs.org/is-unicode-supported/0.1.0 dev: true + registry.npmjs.org/lru-cache/4.1.5: + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz} + name: lru-cache + version: 4.1.5 + dependencies: + pseudomap: registry.npmjs.org/pseudomap/1.0.2 + yallist: registry.npmjs.org/yallist/2.1.2 + dev: true + registry.npmjs.org/lru-cache/6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz} name: lru-cache @@ -737,6 +1599,25 @@ packages: engines: {node: '>=8'} dev: true + registry.npmjs.org/meow/6.1.1: + resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/meow/-/meow-6.1.1.tgz} + name: meow + version: 6.1.1 + engines: {node: '>=8'} + dependencies: + '@types/minimist': registry.npmjs.org/@types/minimist/1.2.2 + camelcase-keys: registry.npmjs.org/camelcase-keys/6.2.2 + decamelize-keys: registry.npmjs.org/decamelize-keys/1.1.0 + hard-rejection: registry.npmjs.org/hard-rejection/2.1.0 + minimist-options: registry.npmjs.org/minimist-options/4.1.0 + normalize-package-data: registry.npmjs.org/normalize-package-data/2.5.0 + read-pkg-up: registry.npmjs.org/read-pkg-up/7.0.1 + redent: registry.npmjs.org/redent/3.0.0 + trim-newlines: registry.npmjs.org/trim-newlines/3.0.1 + type-fest: registry.npmjs.org/type-fest/0.13.1 + yargs-parser: registry.npmjs.org/yargs-parser/18.1.3 + dev: true + registry.npmjs.org/meow/9.0.0: resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/meow/-/meow-9.0.0.tgz} name: meow @@ -800,6 +1681,13 @@ packages: kind-of: registry.npmjs.org/kind-of/6.0.3 dev: true + registry.npmjs.org/mixme/0.5.4: + resolution: {integrity: sha512-3KYa4m4Vlqx98GPdOHghxSdNtTvcP8E0kkaJ5Dlh+h2DRzF7zpuVVcA8B0QpKd11YJeP9QQ7ASkKzOeu195Wzw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/mixme/-/mixme-0.5.4.tgz} + name: mixme + version: 0.5.4 + engines: {node: '>= 8.0.0'} + dev: true + registry.npmjs.org/normalize-package-data/2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz} name: normalize-package-data @@ -823,6 +1711,31 @@ packages: validate-npm-package-license: registry.npmjs.org/validate-npm-package-license/3.0.4 dev: true + registry.npmjs.org/object-inspect/1.12.2: + resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz} + name: object-inspect + version: 1.12.2 + dev: true + + registry.npmjs.org/object-keys/1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz} + name: object-keys + version: 1.1.1 + engines: {node: '>= 0.4'} + dev: true + + registry.npmjs.org/object.assign/4.1.4: + resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz} + name: object.assign + version: 4.1.4 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + define-properties: registry.npmjs.org/define-properties/1.1.4 + has-symbols: registry.npmjs.org/has-symbols/1.0.3 + object-keys: registry.npmjs.org/object-keys/1.1.1 + dev: true + registry.npmjs.org/once/1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/once/-/once-1.4.0.tgz} name: once @@ -831,6 +1744,28 @@ packages: wrappy: registry.npmjs.org/wrappy/1.0.2 dev: true + registry.npmjs.org/os-tmpdir/1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz} + name: os-tmpdir + version: 1.0.2 + engines: {node: '>=0.10.0'} + dev: true + + registry.npmjs.org/outdent/0.5.0: + resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/outdent/-/outdent-0.5.0.tgz} + name: outdent + version: 0.5.0 + dev: true + + registry.npmjs.org/p-filter/2.1.0: + resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz} + name: p-filter + version: 2.1.0 + engines: {node: '>=8'} + dependencies: + p-map: registry.npmjs.org/p-map/2.1.0 + dev: true + registry.npmjs.org/p-limit/2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz} name: p-limit @@ -840,6 +1775,15 @@ packages: p-try: registry.npmjs.org/p-try/2.2.0 dev: true + registry.npmjs.org/p-limit/3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz} + name: p-limit + version: 3.1.0 + engines: {node: '>=10'} + dependencies: + yocto-queue: registry.npmjs.org/yocto-queue/0.1.0 + dev: true + registry.npmjs.org/p-locate/4.1.0: resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz} name: p-locate @@ -849,6 +1793,22 @@ packages: p-limit: registry.npmjs.org/p-limit/2.3.0 dev: true + registry.npmjs.org/p-locate/5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz} + name: p-locate + version: 5.0.0 + engines: {node: '>=10'} + dependencies: + p-limit: registry.npmjs.org/p-limit/3.1.0 + dev: true + + registry.npmjs.org/p-map/2.1.0: + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz} + name: p-map + version: 2.1.0 + engines: {node: '>=6'} + dev: true + registry.npmjs.org/p-try/2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz} name: p-try @@ -909,6 +1869,15 @@ packages: engines: {node: '>=6'} dev: true + registry.npmjs.org/pkg-dir/4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz} + name: pkg-dir + version: 4.2.0 + engines: {node: '>=8'} + dependencies: + find-up: registry.npmjs.org/find-up/4.1.0 + dev: true + registry.npmjs.org/plur/4.0.0: resolution: {integrity: sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/plur/-/plur-4.0.0.tgz} name: plur @@ -926,6 +1895,26 @@ packages: hasBin: true dev: true + registry.npmjs.org/preferred-pm/3.0.3: + resolution: {integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.0.3.tgz} + name: preferred-pm + version: 3.0.3 + engines: {node: '>=10'} + dependencies: + find-up: registry.npmjs.org/find-up/5.0.0 + find-yarn-workspace-root2: registry.npmjs.org/find-yarn-workspace-root2/1.2.16 + path-exists: registry.npmjs.org/path-exists/4.0.0 + which-pm: registry.npmjs.org/which-pm/2.0.0 + dev: true + + registry.npmjs.org/prettier/2.7.1: + resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz} + name: prettier + version: 2.7.1 + engines: {node: '>=10.13.0'} + hasBin: true + dev: true + registry.npmjs.org/pretty-bytes/5.6.0: resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz} name: pretty-bytes @@ -933,6 +1922,12 @@ packages: engines: {node: '>=6'} dev: true + registry.npmjs.org/pseudomap/1.0.2: + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz} + name: pseudomap + version: 1.0.2 + dev: true + registry.npmjs.org/queue-microtask/1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz} name: queue-microtask @@ -969,6 +1964,18 @@ packages: type-fest: registry.npmjs.org/type-fest/0.6.0 dev: true + registry.npmjs.org/read-yaml-file/1.1.0: + resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/read-yaml-file/-/read-yaml-file-1.1.0.tgz} + name: read-yaml-file + version: 1.1.0 + engines: {node: '>=6'} + dependencies: + graceful-fs: registry.npmjs.org/graceful-fs/4.2.10 + js-yaml: registry.npmjs.org/js-yaml/3.14.1 + pify: registry.npmjs.org/pify/4.0.1 + strip-bom: registry.npmjs.org/strip-bom/3.0.0 + dev: true + registry.npmjs.org/rechoir/0.6.2: resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz} name: rechoir @@ -988,6 +1995,43 @@ packages: strip-indent: registry.npmjs.org/strip-indent/3.0.0 dev: true + registry.npmjs.org/regenerator-runtime/0.13.9: + resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz} + name: regenerator-runtime + version: 0.13.9 + dev: true + + registry.npmjs.org/regexp.prototype.flags/1.4.3: + resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz} + name: regexp.prototype.flags + version: 1.4.3 + engines: {node: '>= 0.4'} + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + define-properties: registry.npmjs.org/define-properties/1.1.4 + functions-have-names: registry.npmjs.org/functions-have-names/1.2.3 + dev: true + + registry.npmjs.org/require-directory/2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz} + name: require-directory + version: 2.1.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.npmjs.org/require-main-filename/2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz} + name: require-main-filename + version: 2.0.0 + dev: true + + registry.npmjs.org/resolve-from/5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz} + name: resolve-from + version: 5.0.0 + engines: {node: '>=8'} + dev: true + registry.npmjs.org/resolve/1.22.1: resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz} name: resolve @@ -1023,6 +2067,22 @@ packages: queue-microtask: registry.npmjs.org/queue-microtask/1.2.3 dev: true + registry.npmjs.org/safe-regex-test/1.0.0: + resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz} + name: safe-regex-test + version: 1.0.0 + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + get-intrinsic: registry.npmjs.org/get-intrinsic/1.1.3 + is-regex: registry.npmjs.org/is-regex/1.1.4 + dev: true + + registry.npmjs.org/safer-buffer/2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz} + name: safer-buffer + version: 2.1.2 + dev: true + registry.npmjs.org/semver/5.7.1: resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/semver/-/semver-5.7.1.tgz} name: semver @@ -1040,6 +2100,28 @@ packages: lru-cache: registry.npmjs.org/lru-cache/6.0.0 dev: true + registry.npmjs.org/set-blocking/2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz} + name: set-blocking + version: 2.0.0 + dev: true + + registry.npmjs.org/shebang-command/1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz} + name: shebang-command + version: 1.2.0 + engines: {node: '>=0.10.0'} + dependencies: + shebang-regex: registry.npmjs.org/shebang-regex/1.0.0 + dev: true + + registry.npmjs.org/shebang-regex/1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz} + name: shebang-regex + version: 1.0.0 + engines: {node: '>=0.10.0'} + dev: true + registry.npmjs.org/shelljs-nodecli/0.1.1: resolution: {integrity: sha512-/e+APCWKKW9A8YMHKgDzhWQ21zPuDLjn6ATBczxbp6uUeiCSwvw95ynKAjMsRd1yrd5dlCkMKJoc/Lpwrt2w+A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/shelljs-nodecli/-/shelljs-nodecli-0.1.1.tgz} name: shelljs-nodecli @@ -1068,6 +2150,22 @@ packages: rechoir: registry.npmjs.org/rechoir/0.6.2 dev: true + registry.npmjs.org/side-channel/1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz} + name: side-channel + version: 1.0.4 + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + get-intrinsic: registry.npmjs.org/get-intrinsic/1.1.3 + object-inspect: registry.npmjs.org/object-inspect/1.12.2 + dev: true + + registry.npmjs.org/signal-exit/3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz} + name: signal-exit + version: 3.0.7 + dev: true + registry.npmjs.org/slash/3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/slash/-/slash-3.0.0.tgz} name: slash @@ -1075,6 +2173,30 @@ packages: engines: {node: '>=8'} dev: true + registry.npmjs.org/smartwrap/2.0.2: + resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/smartwrap/-/smartwrap-2.0.2.tgz} + name: smartwrap + version: 2.0.2 + engines: {node: '>=6'} + hasBin: true + dependencies: + array.prototype.flat: registry.npmjs.org/array.prototype.flat/1.3.0 + breakword: registry.npmjs.org/breakword/1.0.5 + grapheme-splitter: registry.npmjs.org/grapheme-splitter/1.0.4 + strip-ansi: registry.npmjs.org/strip-ansi/6.0.1 + wcwidth: registry.npmjs.org/wcwidth/1.0.1 + yargs: registry.npmjs.org/yargs/15.4.1 + dev: true + + registry.npmjs.org/spawndamnit/2.0.0: + resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/spawndamnit/-/spawndamnit-2.0.0.tgz} + name: spawndamnit + version: 2.0.0 + dependencies: + cross-spawn: registry.npmjs.org/cross-spawn/5.1.0 + signal-exit: registry.npmjs.org/signal-exit/3.0.7 + dev: true + registry.npmjs.org/spdx-correct/3.1.1: resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz} name: spdx-correct @@ -1105,6 +2227,20 @@ packages: version: 3.0.12 dev: true + registry.npmjs.org/sprintf-js/1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz} + name: sprintf-js + version: 1.0.3 + dev: true + + registry.npmjs.org/stream-transform/2.1.3: + resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/stream-transform/-/stream-transform-2.1.3.tgz} + name: stream-transform + version: 2.1.3 + dependencies: + mixme: registry.npmjs.org/mixme/0.5.4 + dev: true + registry.npmjs.org/string-width/4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz} name: string-width @@ -1116,6 +2252,26 @@ packages: strip-ansi: registry.npmjs.org/strip-ansi/6.0.1 dev: true + registry.npmjs.org/string.prototype.trimend/1.0.5: + resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz} + name: string.prototype.trimend + version: 1.0.5 + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + define-properties: registry.npmjs.org/define-properties/1.1.4 + es-abstract: registry.npmjs.org/es-abstract/1.20.4 + dev: true + + registry.npmjs.org/string.prototype.trimstart/1.0.5: + resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz} + name: string.prototype.trimstart + version: 1.0.5 + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + define-properties: registry.npmjs.org/define-properties/1.1.4 + es-abstract: registry.npmjs.org/es-abstract/1.20.4 + dev: true + registry.npmjs.org/strip-ansi/6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz} name: strip-ansi @@ -1125,6 +2281,13 @@ packages: ansi-regex: registry.npmjs.org/ansi-regex/5.0.1 dev: true + registry.npmjs.org/strip-bom/3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz} + name: strip-bom + version: 3.0.0 + engines: {node: '>=4'} + dev: true + registry.npmjs.org/strip-indent/3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz} name: strip-indent @@ -1169,6 +2332,22 @@ packages: engines: {node: '>= 0.4'} dev: true + registry.npmjs.org/term-size/2.2.1: + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz} + name: term-size + version: 2.2.1 + engines: {node: '>=8'} + dev: true + + registry.npmjs.org/tmp/0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz} + name: tmp + version: 0.0.33 + engines: {node: '>=0.6.0'} + dependencies: + os-tmpdir: registry.npmjs.org/os-tmpdir/1.0.2 + dev: true + registry.npmjs.org/to-regex-range/5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz} name: to-regex-range @@ -1200,6 +2379,29 @@ packages: read-pkg-up: registry.npmjs.org/read-pkg-up/7.0.1 dev: true + registry.npmjs.org/tty-table/4.1.6: + resolution: {integrity: sha512-kRj5CBzOrakV4VRRY5kUWbNYvo/FpOsz65DzI5op9P+cHov3+IqPbo1JE1ZnQGkHdZgNFDsrEjrfqqy/Ply9fw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/tty-table/-/tty-table-4.1.6.tgz} + name: tty-table + version: 4.1.6 + engines: {node: '>=8.0.0'} + hasBin: true + dependencies: + chalk: registry.npmjs.org/chalk/4.1.2 + csv: registry.npmjs.org/csv/5.5.3 + kleur: registry.npmjs.org/kleur/4.1.5 + smartwrap: registry.npmjs.org/smartwrap/2.0.2 + strip-ansi: registry.npmjs.org/strip-ansi/6.0.1 + wcwidth: registry.npmjs.org/wcwidth/1.0.1 + yargs: registry.npmjs.org/yargs/17.6.0 + dev: true + + registry.npmjs.org/type-fest/0.13.1: + resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz} + name: type-fest + version: 0.13.1 + engines: {node: '>=10'} + dev: true + registry.npmjs.org/type-fest/0.18.1: resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz} name: type-fest @@ -1236,6 +2438,24 @@ packages: hasBin: true dev: true + registry.npmjs.org/unbox-primitive/1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz} + name: unbox-primitive + version: 1.0.2 + dependencies: + call-bind: registry.npmjs.org/call-bind/1.0.2 + has-bigints: registry.npmjs.org/has-bigints/1.0.2 + has-symbols: registry.npmjs.org/has-symbols/1.0.3 + which-boxed-primitive: registry.npmjs.org/which-boxed-primitive/1.0.2 + dev: true + + registry.npmjs.org/universalify/0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz} + name: universalify + version: 0.1.2 + engines: {node: '>= 4.0.0'} + dev: true + registry.npmjs.org/validate-npm-package-license/3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz} name: validate-npm-package-license @@ -1245,21 +2465,165 @@ packages: spdx-expression-parse: registry.npmjs.org/spdx-expression-parse/3.0.1 dev: true + registry.npmjs.org/wcwidth/1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz} + name: wcwidth + version: 1.0.1 + dependencies: + defaults: registry.npmjs.org/defaults/1.0.3 + dev: true + + registry.npmjs.org/which-boxed-primitive/1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz} + name: which-boxed-primitive + version: 1.0.2 + dependencies: + is-bigint: registry.npmjs.org/is-bigint/1.0.4 + is-boolean-object: registry.npmjs.org/is-boolean-object/1.1.2 + is-number-object: registry.npmjs.org/is-number-object/1.0.7 + is-string: registry.npmjs.org/is-string/1.0.7 + is-symbol: registry.npmjs.org/is-symbol/1.0.4 + dev: true + + registry.npmjs.org/which-module/2.0.0: + resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz} + name: which-module + version: 2.0.0 + dev: true + + registry.npmjs.org/which-pm/2.0.0: + resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/which-pm/-/which-pm-2.0.0.tgz} + name: which-pm + version: 2.0.0 + engines: {node: '>=8.15'} + dependencies: + load-yaml-file: registry.npmjs.org/load-yaml-file/0.2.0 + path-exists: registry.npmjs.org/path-exists/4.0.0 + dev: true + + registry.npmjs.org/which/1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/which/-/which-1.3.1.tgz} + name: which + version: 1.3.1 + hasBin: true + dependencies: + isexe: registry.npmjs.org/isexe/2.0.0 + dev: true + + registry.npmjs.org/wrap-ansi/6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz} + name: wrap-ansi + version: 6.2.0 + engines: {node: '>=8'} + dependencies: + ansi-styles: registry.npmjs.org/ansi-styles/4.3.0 + string-width: registry.npmjs.org/string-width/4.2.3 + strip-ansi: registry.npmjs.org/strip-ansi/6.0.1 + dev: true + + registry.npmjs.org/wrap-ansi/7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz} + name: wrap-ansi + version: 7.0.0 + engines: {node: '>=10'} + dependencies: + ansi-styles: registry.npmjs.org/ansi-styles/4.3.0 + string-width: registry.npmjs.org/string-width/4.2.3 + strip-ansi: registry.npmjs.org/strip-ansi/6.0.1 + dev: true + registry.npmjs.org/wrappy/1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz} name: wrappy version: 1.0.2 dev: true + registry.npmjs.org/y18n/4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz} + name: y18n + version: 4.0.3 + dev: true + + registry.npmjs.org/y18n/5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz} + name: y18n + version: 5.0.8 + engines: {node: '>=10'} + dev: true + + registry.npmjs.org/yallist/2.1.2: + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz} + name: yallist + version: 2.1.2 + dev: true + registry.npmjs.org/yallist/4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz} name: yallist version: 4.0.0 dev: true + registry.npmjs.org/yargs-parser/18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz} + name: yargs-parser + version: 18.1.3 + engines: {node: '>=6'} + dependencies: + camelcase: registry.npmjs.org/camelcase/5.3.1 + decamelize: registry.npmjs.org/decamelize/1.2.0 + dev: true + registry.npmjs.org/yargs-parser/20.2.9: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz} name: yargs-parser version: 20.2.9 engines: {node: '>=10'} dev: true + + registry.npmjs.org/yargs-parser/21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz} + name: yargs-parser + version: 21.1.1 + engines: {node: '>=12'} + dev: true + + registry.npmjs.org/yargs/15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz} + name: yargs + version: 15.4.1 + engines: {node: '>=8'} + dependencies: + cliui: registry.npmjs.org/cliui/6.0.0 + decamelize: registry.npmjs.org/decamelize/1.2.0 + find-up: registry.npmjs.org/find-up/4.1.0 + get-caller-file: registry.npmjs.org/get-caller-file/2.0.5 + require-directory: registry.npmjs.org/require-directory/2.1.1 + require-main-filename: registry.npmjs.org/require-main-filename/2.0.0 + set-blocking: registry.npmjs.org/set-blocking/2.0.0 + string-width: registry.npmjs.org/string-width/4.2.3 + which-module: registry.npmjs.org/which-module/2.0.0 + y18n: registry.npmjs.org/y18n/4.0.3 + yargs-parser: registry.npmjs.org/yargs-parser/18.1.3 + dev: true + + registry.npmjs.org/yargs/17.6.0: + resolution: {integrity: sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/yargs/-/yargs-17.6.0.tgz} + name: yargs + version: 17.6.0 + engines: {node: '>=12'} + dependencies: + cliui: registry.npmjs.org/cliui/8.0.1 + escalade: registry.npmjs.org/escalade/3.1.1 + get-caller-file: registry.npmjs.org/get-caller-file/2.0.5 + require-directory: registry.npmjs.org/require-directory/2.1.1 + string-width: registry.npmjs.org/string-width/4.2.3 + y18n: registry.npmjs.org/y18n/5.0.8 + yargs-parser: registry.npmjs.org/yargs-parser/21.1.1 + dev: true + + registry.npmjs.org/yocto-queue/0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz} + name: yocto-queue + version: 0.1.0 + engines: {node: '>=10'} + dev: true From 609578e78fb59a05545a63e8680ddc1ba5956f6b Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sat, 8 Oct 2022 12:03:46 +0100 Subject: [PATCH 4/6] fix(pnpm): remove conflicting script --- .github/workflows/release.yml | 21 +++++++++++++++++---- Makefile | 10 +++++----- README.md | 12 +++++------- bin/dotfiles.sh | 10 +++++----- docs/README.md | 12 +++++------- shell/index.js | 2 +- 6 files changed, 38 insertions(+), 29 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 61f8c84b..575ef7dd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,8 +43,18 @@ jobs: - uses: pnpm/action-setup@v2.2.2 with: version: 7 - registry-url: "https://registry.npmjs.org" - scope: sebastienrousseau + + - name: Get pnpm store directory + id: pnpm-cache + run: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" + + - name: Setup pnpm cache + uses: actions/cache@v3 + with: + path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- - name: Install dependencies run: pnpm install --frozen-lockfile @@ -54,16 +64,19 @@ jobs: env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + - name: Build packages + run: pnpm run build + - name: Set package registry run: pnpm config set registry https://npm.pkg.github.com - - name: Github package registry authentication + - name: GitHub package registry authentication run: pnpm set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }} - name: Npm registry authentication run: pnpm set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }} - - name: Publish the package to Github package registry + - name: Publish the package to GitHub package registry run: pnpm -r publish --access public env: NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/Makefile b/Makefile index e9480880..8f9ca30a 100644 --- a/Makefile +++ b/Makefile @@ -19,13 +19,13 @@ else sh $(HOMEDIR)/bin/dotfiles.sh backup endif -.PHONY: prepare -prepare: # @HELP Prepare the dotfiles on your system. -prepare: ## Prepare the dotfiles on your system. +.PHONY: assemble +assemble: # @HELP Assemble the dotfiles on your system. +assemble: ## Prepare the dotfiles on your system. ifdef PNPM - pnpm run prepare + pnpm run assemble else - sh $(HOMEDIR)/bin/dotfiles prepare + sh $(HOMEDIR)/bin/dotfiles assemble endif .PHONY: copy diff --git a/README.md b/README.md index 8ad4fcf0..20c12e73 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ You can download the latest version (v0.2.454) with the following options: Before installing Dotfiles, we strongly recommend that you back up your existing data. The Dotfiles installer will try to automatically backup any previous installation of known dotfiles into a backup directory -`$HOME/.dotfiles/backup`. +`$HOME/.dotfiles_backup`. The backup files are the following: @@ -150,9 +150,7 @@ The backup files are the following: cacert.pem ``` -After installation, you will find the backup files in the `~/dotfiles_backup` -directory. It is always a good idea to backup as there might be situations in which you -could be required to restore your previous installation. +It is always a good idea to backup as there might be situations in which you could be required to restore your previous installation. ### 3️⃣ Try it out and let us know what you think @@ -170,7 +168,7 @@ The installer will check if you have PnPM installed to switch to the PnPM instal Switch to the `dist` directory and run: ```bash -make prepare +make assemble ``` You can also just check the installer options available, by simply running: @@ -187,7 +185,7 @@ dotfiles rapidly and very efficiently. Switch to the `dist` directory and run: ```bash -pnpm run prepare +pnpm run assemble ``` ### Post installation @@ -208,7 +206,7 @@ Please refer to the [documentation][docs] for more information. Dotfiles contains core elements that are used to configure your shell, and other components catered for your environment setup. Within the download you'll find all the Dotfiles source files grouped within the -`shell` folder. +`dist` folder. You'll see something like this: diff --git a/bin/dotfiles.sh b/bin/dotfiles.sh index eee8f4d9..fdbacc5c 100755 --- a/bin/dotfiles.sh +++ b/bin/dotfiles.sh @@ -78,8 +78,8 @@ unpack() { rm "${DOWNLOADDIR}/v${VERSION}.zip" } -## πŸ…ΏπŸ†πŸ…΄πŸ…ΏπŸ…°πŸ†πŸ…΄ - Prepare the dotfiles on your system. -prepare() { +## πŸ…°πŸ†‚πŸ†‚πŸ…΄πŸ…ΌπŸ…±πŸ…»πŸ…΄ - Assemble the dotfiles on your system. +assemble() { echo "${BIRed}❭${NC} Preparing the dotfiles on your system." backup && download && @@ -146,7 +146,7 @@ COMMANDS: clean - Removes any previous setup directories copy - Copy the new dotfiles files to your '${HOME}' directory download - Download the latest Dotfiles (v${VERSION}) - prepare - Run the full installation process + assemble - Run the full installation process unpack - Unpack the Dotfiles help - Show the help menu @@ -174,9 +174,9 @@ elif [ "$1" = "download" ]; then download elif [ "$1" = "help" ]; then help -elif [ "$1" = "prepare" ]; then +elif [ "$1" = "assemble" ]; then echo "${BIRed}❭${NC} Installing ${BIGreen}Dotfiles v${VERSION}${NC}." - prepare + assemble elif [ "$1" = "unpack" ]; then echo "${BIRed}❭${NC} Unpacking ${BIGreen}Dotfiles v${VERSION}${NC}." unpack diff --git a/docs/README.md b/docs/README.md index 8ad4fcf0..20c12e73 100644 --- a/docs/README.md +++ b/docs/README.md @@ -119,7 +119,7 @@ You can download the latest version (v0.2.454) with the following options: Before installing Dotfiles, we strongly recommend that you back up your existing data. The Dotfiles installer will try to automatically backup any previous installation of known dotfiles into a backup directory -`$HOME/.dotfiles/backup`. +`$HOME/.dotfiles_backup`. The backup files are the following: @@ -150,9 +150,7 @@ The backup files are the following: cacert.pem ``` -After installation, you will find the backup files in the `~/dotfiles_backup` -directory. It is always a good idea to backup as there might be situations in which you -could be required to restore your previous installation. +It is always a good idea to backup as there might be situations in which you could be required to restore your previous installation. ### 3️⃣ Try it out and let us know what you think @@ -170,7 +168,7 @@ The installer will check if you have PnPM installed to switch to the PnPM instal Switch to the `dist` directory and run: ```bash -make prepare +make assemble ``` You can also just check the installer options available, by simply running: @@ -187,7 +185,7 @@ dotfiles rapidly and very efficiently. Switch to the `dist` directory and run: ```bash -pnpm run prepare +pnpm run assemble ``` ### Post installation @@ -208,7 +206,7 @@ Please refer to the [documentation][docs] for more information. Dotfiles contains core elements that are used to configure your shell, and other components catered for your environment setup. Within the download you'll find all the Dotfiles source files grouped within the -`shell` folder. +`dist` folder. You'll see something like this: diff --git a/shell/index.js b/shell/index.js index 65e5e675..2a6933a2 100644 --- a/shell/index.js +++ b/shell/index.js @@ -2,7 +2,7 @@ var shell = require("shelljs"); function main() { - shell.exec("pnpm run prepare"); + shell.exec("pnpm run assemble"); } main(); From bfa7faabb9707caaaf6337ecaaa4d2d69fb97ee8 Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sat, 8 Oct 2022 12:15:38 +0100 Subject: [PATCH 5/6] chore(version): added 0.2.455 --- .changeset/config.json | 3 +- .editorconfig | 2 +- .github/workflows/release.yml | 15 +- .gitignore | 2 +- .npmrc | 2 +- COPYRIGHT | 2 +- Makefile | 2 +- README.md | 8 +- bin/compile.sh | 2 +- bin/copy.sh | 2 +- bin/dotfiles.sh | 4 +- docs/README.md | 8 +- package.json | 6 +- pnpm-lock.yaml | 376 ++++++++++++++++-- pnpm-workspace.yaml | 2 - shell/aliases.sh | 2 +- shell/aliases/default/default.aliases.sh | 2 +- shell/aliases/gcloud/gcloud.aliases.sh | 2 +- shell/aliases/git/git.aliases.tmp | 2 +- shell/aliases/heroku/heroku.aliases.sh | 2 +- shell/aliases/jekyll/jekyll.aliases.sh | 2 +- shell/aliases/pnpm/pnpm.aliases.sh | 2 +- .../aliases/subversion/subversion.aliases.sh | 2 +- shell/aliases/tmux/tmux.aliases.sh | 2 +- shell/configurations.sh | 2 +- shell/configurations/bash/bashrc | 4 +- shell/configurations/curl/curlrc | 2 +- shell/configurations/default/color.sh | 2 +- shell/configurations/default/editor.sh | 2 +- shell/configurations/default/prompt.sh | 2 +- shell/configurations/inputrc/inputrc | 2 +- shell/configurations/profile/profile | 2 +- shell/configurations/tmux/tmux | 2 +- shell/configurations/vim/vimrc | 2 +- shell/configurations/wget/wgetrc | 2 +- shell/configurations/zsh/zshrc | 4 +- shell/exit.sh | 2 +- shell/functions.sh | 2 +- shell/functions/cdls.sh | 2 +- shell/functions/changediskpwd.tmp | 2 +- shell/functions/code.tmp | 2 +- shell/functions/countdown.tmp | 2 +- shell/functions/curlheader.sh | 2 +- shell/functions/curltime.sh | 2 +- shell/functions/encode64.sh | 2 +- shell/functions/environment.sh | 2 +- shell/functions/extract.sh | 2 +- shell/functions/genpwd.sh | 2 +- shell/functions/goto.sh | 2 +- shell/functions/hidehiddenfiles.sh | 2 +- shell/functions/history-all.tmp | 2 +- shell/functions/hostinfo.sh | 2 +- shell/functions/hstats.sh | 2 +- shell/functions/httpdebug.sh | 2 +- shell/functions/keygen.sh | 2 +- shell/functions/last.sh | 2 +- shell/functions/logout.sh | 2 +- shell/functions/lowercase.sh | 2 +- shell/functions/macos.sh | 2 +- shell/functions/matrix.sh | 2 +- shell/functions/mcd.sh | 2 +- shell/functions/mount_read_only.sh | 2 +- shell/functions/myproc.sh | 2 +- shell/functions/prependpath.sh | 2 +- shell/functions/print.tmp | 2 +- shell/functions/ql.sh | 2 +- shell/functions/rd.sh | 2 +- shell/functions/remove_disk.sh | 2 +- shell/functions/ren.sh | 2 +- shell/functions/rm.tmp | 2 +- shell/functions/rps.tmp | 2 +- shell/functions/showhiddenfiles.sh | 2 +- shell/functions/size.sh | 2 +- shell/functions/stopwatch.sh | 2 +- shell/functions/trash.tmp | 2 +- shell/functions/tree.tmp | 2 +- shell/functions/uppercase.sh | 2 +- shell/functions/view-source.sh | 2 +- shell/functions/vscode.sh | 2 +- shell/functions/whoisport.sh | 2 +- shell/functions/zipf.sh | 2 +- shell/history.sh | 2 +- shell/paths.sh | 2 +- shell/paths/ant/ant.paths.sh | 2 +- shell/paths/default/default.paths.sh | 2 +- shell/paths/homebrew/homebrew.paths.sh | 2 +- shell/paths/java/java.paths.sh | 2 +- shell/paths/maven/maven.paths.sh | 2 +- shell/paths/node/node.paths.sh | 2 +- shell/paths/nvm/nvm.paths.sh | 2 +- shell/paths/pnpm/pnpm.paths.sh | 2 +- shell/paths/python/python.paths.sh | 2 +- shell/paths/ruby/ruby.paths.sh | 2 +- shell/paths/tmux/tmux.paths.sh | 2 +- 94 files changed, 466 insertions(+), 132 deletions(-) delete mode 100644 pnpm-workspace.yaml diff --git a/.changeset/config.json b/.changeset/config.json index 9d1f81dc..f13cbd9a 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -2,6 +2,5 @@ "$schema": "https://unpkg.com/@changesets/config@2.2.0/schema.json", "access": "public", "baseBranch": "master", - "changelog": ["@changesets/changelog-github", {"repo": "sebastienrousseau/dotfiles"}], - "fixed": [["dotfiles*"]] + "changelog": ["@changesets/changelog-github", {"repo": "sebastienrousseau/dotfiles"}] } diff --git a/.editorconfig b/.editorconfig index 5b9dbb9a..be3bc98e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,4 @@ -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 575ef7dd..a7299507 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,7 +57,20 @@ jobs: ${{ runner.os }}-pnpm-store- - name: Install dependencies - run: pnpm install --frozen-lockfile + run: pnpm install + + + - name: PR or Publish + id: changesets + uses: changesets/action@v1 + with: + version: pnpm run version + publish: pnpm run publish + env: + # Note: we are using a different GITHUB_TOKEN due to the issues in this thread: + # https://github.com/changesets/action/issues/187 + GITHUB_TOKEN: ${{ secrets.CHANGESETS_GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Publish to NPM run: pnpm publish --access public --tag latest diff --git a/.gitignore b/.gitignore index 737279cc..e9fcabb2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/.npmrc b/.npmrc index 8d4bc2e9..a9f11dab 100644 --- a/.npmrc +++ b/.npmrc @@ -1,4 +1,4 @@ -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT registry=https://npm.pkg.github.com/sebastienrousseau diff --git a/COPYRIGHT b/COPYRIGHT index 1a2fd9c1..f27fd2e0 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,5 +1,5 @@ /* -* πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +* πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io * Copyright (c) Sebastien Rousseau 2022. All rights reserved * License: MIT */ diff --git a/Makefile b/Makefile index 8f9ca30a..c21d024c 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ #!/usr/bin/env make -f -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/README.md b/README.md index 20c12e73..e4b65ea3 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ β€’ [Request Feature][issues] β€’ [Contributing Guidelines][contributing]** -## πŸ‘‹ Welcome to Dotfiles (v0.2.454) +## πŸ‘‹ Welcome to Dotfiles (v0.2.455) ### Simply designed to fit your shell life @@ -22,7 +22,7 @@ aimed at making your life easier by providing a set of scripts and configuration files with new ways to get things done. [![Getting Started][getting_started]][getting-started] -[![Download Dotfiles v0.2.454][download_button]][download] +[![Download Dotfiles v0.2.455][download_button]][download] Dotfiles aggregates a collection of standalone configuration files (dotfiles) combined into a `shell` directory that can be used to customize your development @@ -101,7 +101,7 @@ The following programs must be installed on your system to install Dotfiles: ### 1️⃣ Download Dotfiles -You can download the latest version (v0.2.454) with the following options: +You can download the latest version (v0.2.455) with the following options: - [**Manual download**][releases] - **The easiest way to install Dotfiles.** - [**Install with PnPM**](https://www.npmjs.com/package/@sebastienrousseau/dotfiles) @@ -413,7 +413,7 @@ bunch of awesome [contributors](https://github.com/sebastienrousseau/dotfiles/gr [contributing]: https://github.com/sebastienrousseau/dotfiles/blob/master/.github/CONTRIBUTING.md [curl]: https://curl.se/ [docs]: https://github.com/sebastienrousseau/dotfiles/docs -[download]: https://github.com/sebastienrousseau/dotfiles/archive/refs/tags/v0.2.454.tar.gz +[download]: https://github.com/sebastienrousseau/dotfiles/archive/refs/tags/v0.2.455.tar.gz [getting-started]: https://github.com/sebastienrousseau/dotfiles#getting-started [git]: https://git-scm.com/ [github]: https://github.com/sebastienrousseau/dotfiles diff --git a/bin/compile.sh b/bin/compile.sh index 2400ea66..518f9c72 100755 --- a/bin/compile.sh +++ b/bin/compile.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/bin/copy.sh b/bin/copy.sh index 6d06f7d4..e63195f3 100755 --- a/bin/copy.sh +++ b/bin/copy.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/bin/dotfiles.sh b/bin/dotfiles.sh index fdbacc5c..ea5272a1 100755 --- a/bin/dotfiles.sh +++ b/bin/dotfiles.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT @@ -10,7 +10,7 @@ BIRed='\033[1;91m' # Red color. DOTFILESDIR="${HOME}/.dotfiles" # Location of dotfiles. DOWNLOADDIR="${HOME}/Downloads" # Download directory. NC='\033[0m' # Reset/No Color -VERSION="0.2.454" # Dotfiles Version number. +VERSION="0.2.455" # Dotfiles Version number. ## πŸ…±πŸ…°πŸ…²πŸ…ΊπŸ†„πŸ…Ώ - Backup existing files. backup() { diff --git a/docs/README.md b/docs/README.md index 20c12e73..e4b65ea3 100644 --- a/docs/README.md +++ b/docs/README.md @@ -13,7 +13,7 @@ β€’ [Request Feature][issues] β€’ [Contributing Guidelines][contributing]** -## πŸ‘‹ Welcome to Dotfiles (v0.2.454) +## πŸ‘‹ Welcome to Dotfiles (v0.2.455) ### Simply designed to fit your shell life @@ -22,7 +22,7 @@ aimed at making your life easier by providing a set of scripts and configuration files with new ways to get things done. [![Getting Started][getting_started]][getting-started] -[![Download Dotfiles v0.2.454][download_button]][download] +[![Download Dotfiles v0.2.455][download_button]][download] Dotfiles aggregates a collection of standalone configuration files (dotfiles) combined into a `shell` directory that can be used to customize your development @@ -101,7 +101,7 @@ The following programs must be installed on your system to install Dotfiles: ### 1️⃣ Download Dotfiles -You can download the latest version (v0.2.454) with the following options: +You can download the latest version (v0.2.455) with the following options: - [**Manual download**][releases] - **The easiest way to install Dotfiles.** - [**Install with PnPM**](https://www.npmjs.com/package/@sebastienrousseau/dotfiles) @@ -413,7 +413,7 @@ bunch of awesome [contributors](https://github.com/sebastienrousseau/dotfiles/gr [contributing]: https://github.com/sebastienrousseau/dotfiles/blob/master/.github/CONTRIBUTING.md [curl]: https://curl.se/ [docs]: https://github.com/sebastienrousseau/dotfiles/docs -[download]: https://github.com/sebastienrousseau/dotfiles/archive/refs/tags/v0.2.454.tar.gz +[download]: https://github.com/sebastienrousseau/dotfiles/archive/refs/tags/v0.2.455.tar.gz [getting-started]: https://github.com/sebastienrousseau/dotfiles#getting-started [git]: https://git-scm.com/ [github]: https://github.com/sebastienrousseau/dotfiles diff --git a/package.json b/package.json index 58ac00fa..493107d5 100644 --- a/package.json +++ b/package.json @@ -29,6 +29,7 @@ "@types/shelljs":"0.8.11", "filesizes": "^0.1.2", "jsmin": "^1.0.1", + "nps": "^5.10.0", "pnpm": "^7.13.2", "rimraf": "^3.0.2", "shelljs": "^0.8.5", @@ -94,6 +95,7 @@ "cp:zshr": "cp ./shell/configurations/zsh/zshrc $HOME/.zshrc", "clean": "rimraf \"dist/\" && tsc --build --clean", "cl:tmp": "rimraf \"./dist/shell/**/*.tmp\"", + "assemble": "pnpm run backup && pnpm run directory && pnpm run copy", "build": "pnpm run clean && tsc --build tsconfig.json && pnpm run compile", "changeset": "changeset", "compile": "chmod 755 \"./bin/compile.sh\" && ./bin/compile.sh", @@ -101,11 +103,11 @@ "filesizes": "filesizes ./dist/ > ./dist/filesizes.txt", "help": "chmod 755 \"./bin/dotfiles.sh\" && ./bin/dotfiles.sh", "minify": "jsmin ./shell/index.js > dist/shell/index.js", - "assemble": "pnpm run backup && pnpm run directory && pnpm run copy", + "publish": "nps git:tag && pnpm changeset publish --no-git-tag", "start": "node dist/shell/index.js", "test": "echo \"Error: no test specified\" && exit 1", "version": "pnpm changeset version && pnpm run assemble --no-frozen-lockfile" }, "types": "./dist/index.d.ts", - "version": "0.2.454" + "version": "0.2.455" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d5f07433..c7feb62d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,32 +1,32 @@ lockfileVersion: 5.4 -importers: - - .: - specifiers: - '@changesets/cli': ^2.25.0 - '@types/node': ^16.11.64 - '@types/shelljs': 0.8.11 - filesizes: ^0.1.2 - jsmin: ^1.0.1 - pnpm: ^7.13.2 - rimraf: ^3.0.2 - shelljs: ^0.8.5 - shelljs-nodecli: ^0.1.1 - tsd: 0.24.1 - typescript: ^4.8.4 - devDependencies: - '@changesets/cli': registry.npmjs.org/@changesets/cli/2.25.0 - '@types/node': registry.npmjs.org/@types/node/16.11.64 - '@types/shelljs': registry.npmjs.org/@types/shelljs/0.8.11 - filesizes: registry.npmjs.org/filesizes/0.1.2 - jsmin: registry.npmjs.org/jsmin/1.0.1 - pnpm: registry.npmjs.org/pnpm/7.13.2 - rimraf: registry.npmjs.org/rimraf/3.0.2 - shelljs: registry.npmjs.org/shelljs/0.8.5 - shelljs-nodecli: registry.npmjs.org/shelljs-nodecli/0.1.1 - tsd: registry.npmjs.org/tsd/0.24.1 - typescript: registry.npmjs.org/typescript/4.8.4 +specifiers: + '@changesets/cli': ^2.25.0 + '@types/node': ^16.11.64 + '@types/shelljs': 0.8.11 + filesizes: ^0.1.2 + jsmin: ^1.0.1 + nps: ^5.10.0 + pnpm: ^7.13.2 + rimraf: ^3.0.2 + shelljs: ^0.8.5 + shelljs-nodecli: ^0.1.1 + tsd: 0.24.1 + typescript: ^4.8.4 + +devDependencies: + '@changesets/cli': registry.npmjs.org/@changesets/cli/2.25.0 + '@types/node': registry.npmjs.org/@types/node/16.11.64 + '@types/shelljs': registry.npmjs.org/@types/shelljs/0.8.11 + filesizes: registry.npmjs.org/filesizes/0.1.2 + jsmin: registry.npmjs.org/jsmin/1.0.1 + nps: registry.npmjs.org/nps/5.10.0 + pnpm: registry.npmjs.org/pnpm/7.13.2 + rimraf: registry.npmjs.org/rimraf/3.0.2 + shelljs: registry.npmjs.org/shelljs/0.8.5 + shelljs-nodecli: registry.npmjs.org/shelljs-nodecli/0.1.1 + tsd: registry.npmjs.org/tsd/0.24.1 + typescript: registry.npmjs.org/typescript/4.8.4 packages: @@ -439,6 +439,13 @@ packages: type-fest: registry.npmjs.org/type-fest/0.21.3 dev: true + registry.npmjs.org/ansi-regex/4.1.1: + resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz} + name: ansi-regex + version: 4.1.1 + engines: {node: '>=6'} + dev: true + registry.npmjs.org/ansi-regex/5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz} name: ansi-regex @@ -618,6 +625,16 @@ packages: colors: registry.npmjs.org/colors/1.0.3 dev: true + registry.npmjs.org/cliui/5.0.0: + resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz} + name: cliui + version: 5.0.0 + dependencies: + string-width: registry.npmjs.org/string-width/3.1.0 + strip-ansi: registry.npmjs.org/strip-ansi/5.2.0 + wrap-ansi: registry.npmjs.org/wrap-ansi/5.1.0 + dev: true + registry.npmjs.org/cliui/6.0.0: resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz} name: cliui @@ -689,6 +706,13 @@ packages: engines: {node: '>= 6'} dev: true + registry.npmjs.org/common-tags/1.8.2: + resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz} + name: common-tags + version: 1.8.2 + engines: {node: '>=4.0.0'} + dev: true + registry.npmjs.org/concat-map/0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz} name: concat-map @@ -792,6 +816,12 @@ packages: version: 0.1.2 dev: true + registry.npmjs.org/emoji-regex/7.0.3: + resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz} + name: emoji-regex + version: 7.0.3 + dev: true + registry.npmjs.org/emoji-regex/8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz} name: emoji-regex @@ -910,6 +940,20 @@ packages: hasBin: true dev: true + registry.npmjs.org/event-stream/3.3.4: + resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz} + name: event-stream + version: 3.3.4 + dependencies: + duplexer: registry.npmjs.org/duplexer/0.1.2 + from: registry.npmjs.org/from/0.1.7 + map-stream: registry.npmjs.org/map-stream/0.1.0 + pause-stream: registry.npmjs.org/pause-stream/0.0.11 + split: registry.npmjs.org/split/0.3.3 + stream-combiner: registry.npmjs.org/stream-combiner/0.0.4 + through: registry.npmjs.org/through/2.3.8 + dev: true + registry.npmjs.org/extendable-error/0.1.7: resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/extendable-error/-/extendable-error-0.1.7.tgz} name: extendable-error @@ -970,6 +1014,24 @@ packages: to-regex-range: registry.npmjs.org/to-regex-range/5.0.1 dev: true + registry.npmjs.org/find-up/2.1.0: + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz} + name: find-up + version: 2.1.0 + engines: {node: '>=4'} + dependencies: + locate-path: registry.npmjs.org/locate-path/2.0.0 + dev: true + + registry.npmjs.org/find-up/3.0.0: + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz} + name: find-up + version: 3.0.0 + engines: {node: '>=6'} + dependencies: + locate-path: registry.npmjs.org/locate-path/3.0.0 + dev: true + registry.npmjs.org/find-up/4.1.0: resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz} name: find-up @@ -999,6 +1061,12 @@ packages: pkg-dir: registry.npmjs.org/pkg-dir/4.2.0 dev: true + registry.npmjs.org/from/0.1.7: + resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/from/-/from-0.1.7.tgz} + name: from + version: 0.1.7 + dev: true + registry.npmjs.org/fs-extra/7.0.1: resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz} name: fs-extra @@ -1344,6 +1412,13 @@ packages: engines: {node: '>=0.10.0'} dev: true + registry.npmjs.org/is-fullwidth-code-point/2.0.0: + resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz} + name: is-fullwidth-code-point + version: 2.0.0 + engines: {node: '>=4'} + dev: true + registry.npmjs.org/is-fullwidth-code-point/3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz} name: is-fullwidth-code-point @@ -1383,6 +1458,12 @@ packages: engines: {node: '>=0.12.0'} dev: true + registry.npmjs.org/is-object/1.0.2: + resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz} + name: is-object + version: 1.0.2 + dev: true + registry.npmjs.org/is-plain-obj/1.1.0: resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz} name: is-plain-obj @@ -1533,6 +1614,26 @@ packages: strip-bom: registry.npmjs.org/strip-bom/3.0.0 dev: true + registry.npmjs.org/locate-path/2.0.0: + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz} + name: locate-path + version: 2.0.0 + engines: {node: '>=4'} + dependencies: + p-locate: registry.npmjs.org/p-locate/2.0.0 + path-exists: registry.npmjs.org/path-exists/3.0.0 + dev: true + + registry.npmjs.org/locate-path/3.0.0: + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz} + name: locate-path + version: 3.0.0 + engines: {node: '>=6'} + dependencies: + p-locate: registry.npmjs.org/p-locate/3.0.0 + path-exists: registry.npmjs.org/path-exists/3.0.0 + dev: true + registry.npmjs.org/locate-path/5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz} name: locate-path @@ -1557,6 +1658,12 @@ packages: version: 4.4.0 dev: true + registry.npmjs.org/lodash/4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz} + name: lodash + version: 4.17.21 + dev: true + registry.npmjs.org/log-symbols/4.1.0: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz} name: log-symbols @@ -1585,6 +1692,12 @@ packages: yallist: registry.npmjs.org/yallist/4.0.0 dev: true + registry.npmjs.org/manage-path/2.0.0: + resolution: {integrity: sha512-NJhyB+PJYTpxhxZJ3lecIGgh4kwIY2RAh44XvAz9UlqthlQwtPBf62uBVR8XaD8CRuSjQ6TnZH2lNJkbLPZM2A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/manage-path/-/manage-path-2.0.0.tgz} + name: manage-path + version: 2.0.0 + dev: true + registry.npmjs.org/map-obj/1.0.1: resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz} name: map-obj @@ -1599,6 +1712,12 @@ packages: engines: {node: '>=8'} dev: true + registry.npmjs.org/map-stream/0.1.0: + resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz} + name: map-stream + version: 0.1.0 + dev: true + registry.npmjs.org/meow/6.1.1: resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/meow/-/meow-6.1.1.tgz} name: meow @@ -1711,6 +1830,26 @@ packages: validate-npm-package-license: registry.npmjs.org/validate-npm-package-license/3.0.4 dev: true + registry.npmjs.org/nps/5.10.0: + resolution: {integrity: sha512-tye+0hoKq3pB6NhykoPcOzwn4nEvwVvh1kJEDc+21gYordNdaBlkPv8ZlrZkuEWLUeujvS8VQ56KO9QGoPKkEA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/nps/-/nps-5.10.0.tgz} + name: nps + version: 5.10.0 + hasBin: true + dependencies: + arrify: registry.npmjs.org/arrify/1.0.1 + chalk: registry.npmjs.org/chalk/2.4.2 + common-tags: registry.npmjs.org/common-tags/1.8.2 + find-up: registry.npmjs.org/find-up/2.1.0 + js-yaml: registry.npmjs.org/js-yaml/3.14.1 + lodash: registry.npmjs.org/lodash/4.17.21 + manage-path: registry.npmjs.org/manage-path/2.0.0 + prefix-matches: registry.npmjs.org/prefix-matches/1.0.1 + readline-sync: registry.npmjs.org/readline-sync/1.4.10 + spawn-command-with-kill: registry.npmjs.org/spawn-command-with-kill/1.0.2 + type-detect: registry.npmjs.org/type-detect/4.0.8 + yargs: registry.npmjs.org/yargs/14.2.0 + dev: true + registry.npmjs.org/object-inspect/1.12.2: resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz} name: object-inspect @@ -1766,6 +1905,15 @@ packages: p-map: registry.npmjs.org/p-map/2.1.0 dev: true + registry.npmjs.org/p-limit/1.3.0: + resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz} + name: p-limit + version: 1.3.0 + engines: {node: '>=4'} + dependencies: + p-try: registry.npmjs.org/p-try/1.0.0 + dev: true + registry.npmjs.org/p-limit/2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz} name: p-limit @@ -1784,6 +1932,24 @@ packages: yocto-queue: registry.npmjs.org/yocto-queue/0.1.0 dev: true + registry.npmjs.org/p-locate/2.0.0: + resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz} + name: p-locate + version: 2.0.0 + engines: {node: '>=4'} + dependencies: + p-limit: registry.npmjs.org/p-limit/1.3.0 + dev: true + + registry.npmjs.org/p-locate/3.0.0: + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz} + name: p-locate + version: 3.0.0 + engines: {node: '>=6'} + dependencies: + p-limit: registry.npmjs.org/p-limit/2.3.0 + dev: true + registry.npmjs.org/p-locate/4.1.0: resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz} name: p-locate @@ -1809,6 +1975,13 @@ packages: engines: {node: '>=6'} dev: true + registry.npmjs.org/p-try/1.0.0: + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz} + name: p-try + version: 1.0.0 + engines: {node: '>=4'} + dev: true + registry.npmjs.org/p-try/2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz} name: p-try @@ -1828,6 +2001,13 @@ packages: lines-and-columns: registry.npmjs.org/lines-and-columns/1.2.4 dev: true + registry.npmjs.org/path-exists/3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz} + name: path-exists + version: 3.0.0 + engines: {node: '>=4'} + dev: true + registry.npmjs.org/path-exists/4.0.0: resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz} name: path-exists @@ -1855,6 +2035,14 @@ packages: engines: {node: '>=8'} dev: true + registry.npmjs.org/pause-stream/0.0.11: + resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz} + name: pause-stream + version: 0.0.11 + dependencies: + through: registry.npmjs.org/through/2.3.8 + dev: true + registry.npmjs.org/picomatch/2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz} name: picomatch @@ -1907,6 +2095,15 @@ packages: which-pm: registry.npmjs.org/which-pm/2.0.0 dev: true + registry.npmjs.org/prefix-matches/1.0.1: + resolution: {integrity: sha512-VXwWx7Ws2VSKIYXBPDGjhh1fTgNkeVwWGV+Ysi9mEnduw763FuDQBSUSRKtZ7ZUUEUFAvkbUpUEwgw4g1r1m+A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/prefix-matches/-/prefix-matches-1.0.1.tgz} + name: prefix-matches + version: 1.0.1 + dependencies: + is-object: registry.npmjs.org/is-object/1.0.2 + starts-with: registry.npmjs.org/starts-with/1.0.2 + dev: true + registry.npmjs.org/prettier/2.7.1: resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz} name: prettier @@ -1922,6 +2119,16 @@ packages: engines: {node: '>=6'} dev: true + registry.npmjs.org/ps-tree/1.2.0: + resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz} + name: ps-tree + version: 1.2.0 + engines: {node: '>= 0.10'} + hasBin: true + dependencies: + event-stream: registry.npmjs.org/event-stream/3.3.4 + dev: true + registry.npmjs.org/pseudomap/1.0.2: resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz} name: pseudomap @@ -1976,6 +2183,13 @@ packages: strip-bom: registry.npmjs.org/strip-bom/3.0.0 dev: true + registry.npmjs.org/readline-sync/1.4.10: + resolution: {integrity: sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/readline-sync/-/readline-sync-1.4.10.tgz} + name: readline-sync + version: 1.4.10 + engines: {node: '>= 0.8.0'} + dev: true + registry.npmjs.org/rechoir/0.6.2: resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz} name: rechoir @@ -2188,6 +2402,21 @@ packages: yargs: registry.npmjs.org/yargs/15.4.1 dev: true + registry.npmjs.org/spawn-command-with-kill/1.0.2: + resolution: {integrity: sha512-EPzhF/ZO19xzZ1RCyrNorAal5o5FoZoXqHeybQm4vyfMmNbOU5cvfKQsTuspcBVilL5QDmybYpwkj9/GgaEd8Q==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/spawn-command-with-kill/-/spawn-command-with-kill-1.0.2.tgz} + name: spawn-command-with-kill + version: 1.0.2 + dependencies: + ps-tree: registry.npmjs.org/ps-tree/1.2.0 + spawn-command: registry.npmjs.org/spawn-command/0.0.2-1 + dev: true + + registry.npmjs.org/spawn-command/0.0.2-1: + resolution: {integrity: sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz} + name: spawn-command + version: 0.0.2-1 + dev: true + registry.npmjs.org/spawndamnit/2.0.0: resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/spawndamnit/-/spawndamnit-2.0.0.tgz} name: spawndamnit @@ -2227,12 +2456,34 @@ packages: version: 3.0.12 dev: true + registry.npmjs.org/split/0.3.3: + resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/split/-/split-0.3.3.tgz} + name: split + version: 0.3.3 + dependencies: + through: registry.npmjs.org/through/2.3.8 + dev: true + registry.npmjs.org/sprintf-js/1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz} name: sprintf-js version: 1.0.3 dev: true + registry.npmjs.org/starts-with/1.0.2: + resolution: {integrity: sha512-QUw5X+IMTGDm1nrdowEdDaA0MNiUmRlQFwpTTXmhuPKQc+7b0h8fOHtlt1zZqcEK5x1Fsitrobo7KEusc+d1rg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/starts-with/-/starts-with-1.0.2.tgz} + name: starts-with + version: 1.0.2 + dev: true + + registry.npmjs.org/stream-combiner/0.0.4: + resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz} + name: stream-combiner + version: 0.0.4 + dependencies: + duplexer: registry.npmjs.org/duplexer/0.1.2 + dev: true + registry.npmjs.org/stream-transform/2.1.3: resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/stream-transform/-/stream-transform-2.1.3.tgz} name: stream-transform @@ -2241,6 +2492,17 @@ packages: mixme: registry.npmjs.org/mixme/0.5.4 dev: true + registry.npmjs.org/string-width/3.1.0: + resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz} + name: string-width + version: 3.1.0 + engines: {node: '>=6'} + dependencies: + emoji-regex: registry.npmjs.org/emoji-regex/7.0.3 + is-fullwidth-code-point: registry.npmjs.org/is-fullwidth-code-point/2.0.0 + strip-ansi: registry.npmjs.org/strip-ansi/5.2.0 + dev: true + registry.npmjs.org/string-width/4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz} name: string-width @@ -2272,6 +2534,15 @@ packages: es-abstract: registry.npmjs.org/es-abstract/1.20.4 dev: true + registry.npmjs.org/strip-ansi/5.2.0: + resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz} + name: strip-ansi + version: 5.2.0 + engines: {node: '>=6'} + dependencies: + ansi-regex: registry.npmjs.org/ansi-regex/4.1.1 + dev: true + registry.npmjs.org/strip-ansi/6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz} name: strip-ansi @@ -2339,6 +2610,12 @@ packages: engines: {node: '>=8'} dev: true + registry.npmjs.org/through/2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/through/-/through-2.3.8.tgz} + name: through + version: 2.3.8 + dev: true + registry.npmjs.org/tmp/0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz} name: tmp @@ -2395,6 +2672,13 @@ packages: yargs: registry.npmjs.org/yargs/17.6.0 dev: true + registry.npmjs.org/type-detect/4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz} + name: type-detect + version: 4.0.8 + engines: {node: '>=4'} + dev: true + registry.npmjs.org/type-fest/0.13.1: resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz} name: type-fest @@ -2510,6 +2794,17 @@ packages: isexe: registry.npmjs.org/isexe/2.0.0 dev: true + registry.npmjs.org/wrap-ansi/5.1.0: + resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz} + name: wrap-ansi + version: 5.1.0 + engines: {node: '>=6'} + dependencies: + ansi-styles: registry.npmjs.org/ansi-styles/3.2.1 + string-width: registry.npmjs.org/string-width/3.1.0 + strip-ansi: registry.npmjs.org/strip-ansi/5.2.0 + dev: true + registry.npmjs.org/wrap-ansi/6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz} name: wrap-ansi @@ -2563,6 +2858,15 @@ packages: version: 4.0.0 dev: true + registry.npmjs.org/yargs-parser/15.0.3: + resolution: {integrity: sha512-/MVEVjTXy/cGAjdtQf8dW3V9b97bPN7rNn8ETj6BmAQL7ibC7O1Q9SPJbGjgh3SlwoBNXMzj/ZGIj8mBgl12YA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/yargs-parser/-/yargs-parser-15.0.3.tgz} + name: yargs-parser + version: 15.0.3 + dependencies: + camelcase: registry.npmjs.org/camelcase/5.3.1 + decamelize: registry.npmjs.org/decamelize/1.2.0 + dev: true + registry.npmjs.org/yargs-parser/18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz} name: yargs-parser @@ -2587,6 +2891,24 @@ packages: engines: {node: '>=12'} dev: true + registry.npmjs.org/yargs/14.2.0: + resolution: {integrity: sha512-/is78VKbKs70bVZH7w4YaZea6xcJWOAwkhbR0CFuZBmYtfTYF0xjGJF43AYd8g2Uii1yJwmS5GR2vBmrc32sbg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/yargs/-/yargs-14.2.0.tgz} + name: yargs + version: 14.2.0 + dependencies: + cliui: registry.npmjs.org/cliui/5.0.0 + decamelize: registry.npmjs.org/decamelize/1.2.0 + find-up: registry.npmjs.org/find-up/3.0.0 + get-caller-file: registry.npmjs.org/get-caller-file/2.0.5 + require-directory: registry.npmjs.org/require-directory/2.1.1 + require-main-filename: registry.npmjs.org/require-main-filename/2.0.0 + set-blocking: registry.npmjs.org/set-blocking/2.0.0 + string-width: registry.npmjs.org/string-width/3.1.0 + which-module: registry.npmjs.org/which-module/2.0.0 + y18n: registry.npmjs.org/y18n/4.0.3 + yargs-parser: registry.npmjs.org/yargs-parser/15.0.3 + dev: true + registry.npmjs.org/yargs/15.4.1: resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz} name: yargs diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml deleted file mode 100644 index 722d5c67..00000000 --- a/pnpm-workspace.yaml +++ /dev/null @@ -1,2 +0,0 @@ -packages: - - "shell/**" diff --git a/shell/aliases.sh b/shell/aliases.sh index 4ef08ca7..f379c9ae 100644 --- a/shell/aliases.sh +++ b/shell/aliases.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/aliases/default/default.aliases.sh b/shell/aliases/default/default.aliases.sh index cbd60b8a..3452d6f9 100644 --- a/shell/aliases/default/default.aliases.sh +++ b/shell/aliases/default/default.aliases.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/aliases/gcloud/gcloud.aliases.sh b/shell/aliases/gcloud/gcloud.aliases.sh index 025c8f3b..8e60bff6 100644 --- a/shell/aliases/gcloud/gcloud.aliases.sh +++ b/shell/aliases/gcloud/gcloud.aliases.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/aliases/git/git.aliases.tmp b/shell/aliases/git/git.aliases.tmp index 4555e627..5f26aac8 100644 --- a/shell/aliases/git/git.aliases.tmp +++ b/shell/aliases/git/git.aliases.tmp @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/aliases/heroku/heroku.aliases.sh b/shell/aliases/heroku/heroku.aliases.sh index 498184ce..630cd270 100644 --- a/shell/aliases/heroku/heroku.aliases.sh +++ b/shell/aliases/heroku/heroku.aliases.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/aliases/jekyll/jekyll.aliases.sh b/shell/aliases/jekyll/jekyll.aliases.sh index f3cac48f..0c31b739 100644 --- a/shell/aliases/jekyll/jekyll.aliases.sh +++ b/shell/aliases/jekyll/jekyll.aliases.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/aliases/pnpm/pnpm.aliases.sh b/shell/aliases/pnpm/pnpm.aliases.sh index cbd10c45..2581313e 100644 --- a/shell/aliases/pnpm/pnpm.aliases.sh +++ b/shell/aliases/pnpm/pnpm.aliases.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/aliases/subversion/subversion.aliases.sh b/shell/aliases/subversion/subversion.aliases.sh index b5ab0f3a..9c33aca9 100644 --- a/shell/aliases/subversion/subversion.aliases.sh +++ b/shell/aliases/subversion/subversion.aliases.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/aliases/tmux/tmux.aliases.sh b/shell/aliases/tmux/tmux.aliases.sh index a4443a55..80a61e42 100644 --- a/shell/aliases/tmux/tmux.aliases.sh +++ b/shell/aliases/tmux/tmux.aliases.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/configurations.sh b/shell/configurations.sh index 3131520d..855275b1 100644 --- a/shell/configurations.sh +++ b/shell/configurations.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/configurations/bash/bashrc b/shell/configurations/bash/bashrc index 91632612..bb96170d 100644 --- a/shell/configurations/bash/bashrc +++ b/shell/configurations/bash/bashrc @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT @@ -15,7 +15,7 @@ USER=$(whoami) # current user name. ## πŸ…΄πŸ†‡πŸ…ΏπŸ…ΎπŸ†πŸ†ƒπŸ†‚ - Export the variables. export ARCHFLAGS="-arch ${OS_ARCH}" # archflags for the current machine. -export DOTFILES_VERSION='0.2.454' # version of the dotfiles. +export DOTFILES_VERSION='0.2.455' # version of the dotfiles. export DOTFILES="${HOME}"/.dotfiles/shell # path to the cross plaform dotfiles. export HOSTNAME=${HOSTNAME} # hostname of the machine. export INPUTRC=${INPUTRC} # set INPUTRC (so that .inputrc is respected) diff --git a/shell/configurations/curl/curlrc b/shell/configurations/curl/curlrc index 1ea3120d..451a101f 100644 --- a/shell/configurations/curl/curlrc +++ b/shell/configurations/curl/curlrc @@ -1,4 +1,4 @@ -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/configurations/default/color.sh b/shell/configurations/default/color.sh index 2c3fc842..dd152a7b 100644 --- a/shell/configurations/default/color.sh +++ b/shell/configurations/default/color.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/configurations/default/editor.sh b/shell/configurations/default/editor.sh index f312afd2..19d9f5e4 100644 --- a/shell/configurations/default/editor.sh +++ b/shell/configurations/default/editor.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/configurations/default/prompt.sh b/shell/configurations/default/prompt.sh index a03549ce..1f7acac5 100644 --- a/shell/configurations/default/prompt.sh +++ b/shell/configurations/default/prompt.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/configurations/inputrc/inputrc b/shell/configurations/inputrc/inputrc index 47258134..0d693082 100644 --- a/shell/configurations/inputrc/inputrc +++ b/shell/configurations/inputrc/inputrc @@ -1,4 +1,4 @@ -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/configurations/profile/profile b/shell/configurations/profile/profile index 0c099f6e..91e5c31a 100644 --- a/shell/configurations/profile/profile +++ b/shell/configurations/profile/profile @@ -1,4 +1,4 @@ -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/configurations/tmux/tmux b/shell/configurations/tmux/tmux index 2cd3cb54..0a5b1fce 100644 --- a/shell/configurations/tmux/tmux +++ b/shell/configurations/tmux/tmux @@ -1,4 +1,4 @@ -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/configurations/vim/vimrc b/shell/configurations/vim/vimrc index e917d8c1..2129c9fd 100644 --- a/shell/configurations/vim/vimrc +++ b/shell/configurations/vim/vimrc @@ -1,4 +1,4 @@ -" πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +" πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io " Copyright (c) Sebastien Rousseau 2022. All rights reserved " License: MIT diff --git a/shell/configurations/wget/wgetrc b/shell/configurations/wget/wgetrc index bf0f9eb5..f31e506c 100644 --- a/shell/configurations/wget/wgetrc +++ b/shell/configurations/wget/wgetrc @@ -1,4 +1,4 @@ -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/configurations/zsh/zshrc b/shell/configurations/zsh/zshrc index 567cc6cb..ae400960 100644 --- a/shell/configurations/zsh/zshrc +++ b/shell/configurations/zsh/zshrc @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT @@ -15,7 +15,7 @@ USER=$(whoami) # current user name. ## πŸ…΄πŸ†‡πŸ…ΏπŸ…ΎπŸ†πŸ†ƒπŸ†‚ - Export the variables. export ARCHFLAGS="-arch ${OS_ARCH}" # archflags for the current machine. -export DOTFILES_VERSION='0.2.454' # version of the dotfiles. +export DOTFILES_VERSION='0.2.455' # version of the dotfiles. export DOTFILES="${HOME}"/.dotfiles/shell # path to the cross plaform dotfiles. export HOSTNAME=${HOSTNAME} # hostname of the machine. export INPUTRC=${INPUTRC} # set INPUTRC (so that .inputrc is respected) diff --git a/shell/exit.sh b/shell/exit.sh index 13913c0f..2a4d0813 100644 --- a/shell/exit.sh +++ b/shell/exit.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions.sh b/shell/functions.sh index 58db3bca..b835d917 100644 --- a/shell/functions.sh +++ b/shell/functions.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/cdls.sh b/shell/functions/cdls.sh index 49db7625..a958d7de 100644 --- a/shell/functions/cdls.sh +++ b/shell/functions/cdls.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/changediskpwd.tmp b/shell/functions/changediskpwd.tmp index 95721bcf..e0cf7efe 100644 --- a/shell/functions/changediskpwd.tmp +++ b/shell/functions/changediskpwd.tmp @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/code.tmp b/shell/functions/code.tmp index 38d7e83e..0a38815e 100644 --- a/shell/functions/code.tmp +++ b/shell/functions/code.tmp @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/countdown.tmp b/shell/functions/countdown.tmp index 4ff2e8d7..b11589aa 100644 --- a/shell/functions/countdown.tmp +++ b/shell/functions/countdown.tmp @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/curlheader.sh b/shell/functions/curlheader.sh index 1f1fade4..7f8325a0 100644 --- a/shell/functions/curlheader.sh +++ b/shell/functions/curlheader.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/curltime.sh b/shell/functions/curltime.sh index 5b6aa708..116650fa 100644 --- a/shell/functions/curltime.sh +++ b/shell/functions/curltime.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/encode64.sh b/shell/functions/encode64.sh index bba958e3..2d795ea9 100644 --- a/shell/functions/encode64.sh +++ b/shell/functions/encode64.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/environment.sh b/shell/functions/environment.sh index f00b9df6..b3428d20 100644 --- a/shell/functions/environment.sh +++ b/shell/functions/environment.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/extract.sh b/shell/functions/extract.sh index 332f790c..e89af50f 100644 --- a/shell/functions/extract.sh +++ b/shell/functions/extract.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/genpwd.sh b/shell/functions/genpwd.sh index c653d8e2..8e543278 100644 --- a/shell/functions/genpwd.sh +++ b/shell/functions/genpwd.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/goto.sh b/shell/functions/goto.sh index 17809a23..834946c9 100644 --- a/shell/functions/goto.sh +++ b/shell/functions/goto.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/hidehiddenfiles.sh b/shell/functions/hidehiddenfiles.sh index 6aa15607..94d73101 100644 --- a/shell/functions/hidehiddenfiles.sh +++ b/shell/functions/hidehiddenfiles.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/history-all.tmp b/shell/functions/history-all.tmp index fe1136d3..c354d7f8 100644 --- a/shell/functions/history-all.tmp +++ b/shell/functions/history-all.tmp @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/hostinfo.sh b/shell/functions/hostinfo.sh index b760d128..fa62edf3 100644 --- a/shell/functions/hostinfo.sh +++ b/shell/functions/hostinfo.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/hstats.sh b/shell/functions/hstats.sh index 3b5b1e89..2b1d975d 100644 --- a/shell/functions/hstats.sh +++ b/shell/functions/hstats.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/httpdebug.sh b/shell/functions/httpdebug.sh index 0a619543..e2535c08 100644 --- a/shell/functions/httpdebug.sh +++ b/shell/functions/httpdebug.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/keygen.sh b/shell/functions/keygen.sh index d95de5ad..3acfa93b 100644 --- a/shell/functions/keygen.sh +++ b/shell/functions/keygen.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/last.sh b/shell/functions/last.sh index beff0b66..8b595442 100644 --- a/shell/functions/last.sh +++ b/shell/functions/last.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/logout.sh b/shell/functions/logout.sh index e626df8c..d0fdfbb8 100644 --- a/shell/functions/logout.sh +++ b/shell/functions/logout.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/lowercase.sh b/shell/functions/lowercase.sh index f6fd5655..37a74c9e 100644 --- a/shell/functions/lowercase.sh +++ b/shell/functions/lowercase.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/macos.sh b/shell/functions/macos.sh index ca9a2784..e98ef455 100644 --- a/shell/functions/macos.sh +++ b/shell/functions/macos.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/matrix.sh b/shell/functions/matrix.sh index 8771433b..f908ac1c 100644 --- a/shell/functions/matrix.sh +++ b/shell/functions/matrix.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/mcd.sh b/shell/functions/mcd.sh index d2705dc9..b38c00e3 100644 --- a/shell/functions/mcd.sh +++ b/shell/functions/mcd.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/mount_read_only.sh b/shell/functions/mount_read_only.sh index 44994eaf..00113d9a 100644 --- a/shell/functions/mount_read_only.sh +++ b/shell/functions/mount_read_only.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/myproc.sh b/shell/functions/myproc.sh index 3a8f8c79..701d7830 100644 --- a/shell/functions/myproc.sh +++ b/shell/functions/myproc.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/prependpath.sh b/shell/functions/prependpath.sh index 7ac9389a..fcaad0d2 100644 --- a/shell/functions/prependpath.sh +++ b/shell/functions/prependpath.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/print.tmp b/shell/functions/print.tmp index 58144501..4cc64f86 100644 --- a/shell/functions/print.tmp +++ b/shell/functions/print.tmp @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/ql.sh b/shell/functions/ql.sh index bbfa5a1f..b71a460b 100644 --- a/shell/functions/ql.sh +++ b/shell/functions/ql.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/rd.sh b/shell/functions/rd.sh index 8b2eb383..d5091b95 100644 --- a/shell/functions/rd.sh +++ b/shell/functions/rd.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/remove_disk.sh b/shell/functions/remove_disk.sh index 1a6716c8..bb75912f 100644 --- a/shell/functions/remove_disk.sh +++ b/shell/functions/remove_disk.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/ren.sh b/shell/functions/ren.sh index 9215175a..ae9f7b0d 100644 --- a/shell/functions/ren.sh +++ b/shell/functions/ren.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/rm.tmp b/shell/functions/rm.tmp index d1acd534..7277528c 100644 --- a/shell/functions/rm.tmp +++ b/shell/functions/rm.tmp @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/rps.tmp b/shell/functions/rps.tmp index c2e16515..bfda818f 100755 --- a/shell/functions/rps.tmp +++ b/shell/functions/rps.tmp @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/showhiddenfiles.sh b/shell/functions/showhiddenfiles.sh index 07cdb953..9c8c3834 100644 --- a/shell/functions/showhiddenfiles.sh +++ b/shell/functions/showhiddenfiles.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/size.sh b/shell/functions/size.sh index 8cfd3cbe..eb0f6f51 100644 --- a/shell/functions/size.sh +++ b/shell/functions/size.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/stopwatch.sh b/shell/functions/stopwatch.sh index a8aac3a5..786fc719 100644 --- a/shell/functions/stopwatch.sh +++ b/shell/functions/stopwatch.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/trash.tmp b/shell/functions/trash.tmp index a54843e5..c59d198f 100644 --- a/shell/functions/trash.tmp +++ b/shell/functions/trash.tmp @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/tree.tmp b/shell/functions/tree.tmp index dd67f8b0..81ad2e3c 100644 --- a/shell/functions/tree.tmp +++ b/shell/functions/tree.tmp @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/uppercase.sh b/shell/functions/uppercase.sh index c6b0a881..86d9f56f 100644 --- a/shell/functions/uppercase.sh +++ b/shell/functions/uppercase.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/view-source.sh b/shell/functions/view-source.sh index 3d9bd1cf..725003fc 100644 --- a/shell/functions/view-source.sh +++ b/shell/functions/view-source.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/vscode.sh b/shell/functions/vscode.sh index b1892fc5..bf193975 100644 --- a/shell/functions/vscode.sh +++ b/shell/functions/vscode.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/whoisport.sh b/shell/functions/whoisport.sh index a84f4d7b..3a180543 100644 --- a/shell/functions/whoisport.sh +++ b/shell/functions/whoisport.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/functions/zipf.sh b/shell/functions/zipf.sh index bb3941b7..ce9bbd51 100644 --- a/shell/functions/zipf.sh +++ b/shell/functions/zipf.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/history.sh b/shell/history.sh index b8328a80..a66c8ddf 100644 --- a/shell/history.sh +++ b/shell/history.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/paths.sh b/shell/paths.sh index 111ecfb1..163b359d 100644 --- a/shell/paths.sh +++ b/shell/paths.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/paths/ant/ant.paths.sh b/shell/paths/ant/ant.paths.sh index 813e46f1..d08fc27c 100644 --- a/shell/paths/ant/ant.paths.sh +++ b/shell/paths/ant/ant.paths.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/paths/default/default.paths.sh b/shell/paths/default/default.paths.sh index c1791c55..8f6cd777 100644 --- a/shell/paths/default/default.paths.sh +++ b/shell/paths/default/default.paths.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/paths/homebrew/homebrew.paths.sh b/shell/paths/homebrew/homebrew.paths.sh index 69362383..d42e8d4e 100644 --- a/shell/paths/homebrew/homebrew.paths.sh +++ b/shell/paths/homebrew/homebrew.paths.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/paths/java/java.paths.sh b/shell/paths/java/java.paths.sh index b0d4c69e..f45d16fa 100644 --- a/shell/paths/java/java.paths.sh +++ b/shell/paths/java/java.paths.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/paths/maven/maven.paths.sh b/shell/paths/maven/maven.paths.sh index f7b30ddb..0b0a9163 100644 --- a/shell/paths/maven/maven.paths.sh +++ b/shell/paths/maven/maven.paths.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/paths/node/node.paths.sh b/shell/paths/node/node.paths.sh index 02c10e0f..8c1d8d63 100644 --- a/shell/paths/node/node.paths.sh +++ b/shell/paths/node/node.paths.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/paths/nvm/nvm.paths.sh b/shell/paths/nvm/nvm.paths.sh index 46beedaf..76e09a6e 100644 --- a/shell/paths/nvm/nvm.paths.sh +++ b/shell/paths/nvm/nvm.paths.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/paths/pnpm/pnpm.paths.sh b/shell/paths/pnpm/pnpm.paths.sh index cc1e1570..7543f411 100644 --- a/shell/paths/pnpm/pnpm.paths.sh +++ b/shell/paths/pnpm/pnpm.paths.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/paths/python/python.paths.sh b/shell/paths/python/python.paths.sh index ddb88f01..cb35a38f 100644 --- a/shell/paths/python/python.paths.sh +++ b/shell/paths/python/python.paths.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/paths/ruby/ruby.paths.sh b/shell/paths/ruby/ruby.paths.sh index 70c450f3..d5fae48d 100644 --- a/shell/paths/ruby/ruby.paths.sh +++ b/shell/paths/ruby/ruby.paths.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT diff --git a/shell/paths/tmux/tmux.paths.sh b/shell/paths/tmux/tmux.paths.sh index f949a9e1..d65fe9ec 100644 --- a/shell/paths/tmux/tmux.paths.sh +++ b/shell/paths/tmux/tmux.paths.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.454) - https://dotfiles.io +# πŸ…³πŸ…ΎπŸ†ƒπŸ…΅πŸ…ΈπŸ…»πŸ…΄πŸ†‚ (v0.2.455) - https://dotfiles.io # Copyright (c) Sebastien Rousseau 2022. All rights reserved # License: MIT From 2f93bd0a950ebe1b15cab7960f5c0e4a84b39b22 Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sat, 8 Oct 2022 12:17:27 +0100 Subject: [PATCH 6/6] fix(ci): remove unused content --- .github/workflows/release.yml | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a7299507..aceebf92 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,27 +69,5 @@ jobs: env: # Note: we are using a different GITHUB_TOKEN due to the issues in this thread: # https://github.com/changesets/action/issues/187 - GITHUB_TOKEN: ${{ secrets.CHANGESETS_GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - - - name: Publish to NPM - run: pnpm publish --access public --tag latest - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - - - name: Build packages - run: pnpm run build - - - name: Set package registry - run: pnpm config set registry https://npm.pkg.github.com - - - name: GitHub package registry authentication - run: pnpm set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }} - - - name: Npm registry authentication - run: pnpm set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }} - - - name: Publish the package to GitHub package registry - run: pnpm -r publish --access public - env: - NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}