From 34725edc495f6338f8984b15bca52235109ef80a Mon Sep 17 00:00:00 2001 From: Keith Date: Tue, 10 Nov 2020 11:21:24 -0800 Subject: [PATCH 1/3] Update CHANGELOG.md [skip ci] --- .github/workflows/release.yml | 43 + package-lock.json | 1463 +++++++++++++++++++++++++++++++++ package.json | 7 +- 3 files changed, 1512 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..e9d5ac9 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,43 @@ +name: Release + +on: [push] + +jobs: + release: + runs-on: ubuntu-latest + if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')" + steps: + - uses: actions/checkout@v2 + + - name: Prepare repository + run: git fetch --unshallow --tags + + - name: Use Node.js 12.x + uses: actions/setup-node@v1 + with: + node-version: 12.x + + - name: Cache node modules + uses: actions/cache@v1 + with: + path: node_modules + key: npm-deps-${{ hashFiles('package-lock.json') }} + restore-keys: | + npm-deps-${{ hashFiles('package-lock.json') }} + + - name: Build release + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }} + NPM_TOKEN: ${{ secrets.GH_TOKEN }} + run: | + npm install --frozen-lockfile + npm run build + + - name: Create Release + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }} + NPM_TOKEN: ${{ secrets.GH_TOKEN }} + run: | + npm run release \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 336771e..3534f55 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,6 +4,182 @@ "lockfileVersion": 1, "requires": true, "dependencies": { + "@auto-it/bot-list": { + "version": "9.61.0", + "resolved": "https://registry.npmjs.org/@auto-it/bot-list/-/bot-list-9.61.0.tgz", + "integrity": "sha512-/W7qeHFGO4M9vbiBWh5v80IwQsWN5j0mPkQL5bjY18QXwy1D/GsQ/SuGrZ12NYDMSwlMsa5NelVEicSkwYFAqQ==", + "dev": true + }, + "@auto-it/core": { + "version": "9.61.0", + "resolved": "https://registry.npmjs.org/@auto-it/core/-/core-9.61.0.tgz", + "integrity": "sha512-fuH7qfnraiaPRPqm3V8b+7s9xHFt3/ojbQWKFeYzRA+zEbk6Ie2MqhLXRDBON3hTDjSnjw5cwY14R2RkL98hcQ==", + "dev": true, + "requires": { + "@auto-it/bot-list": "9.61.0", + "@octokit/plugin-enterprise-compatibility": "^1.2.2", + "@octokit/plugin-retry": "^3.0.1", + "@octokit/plugin-throttling": "^3.2.0", + "@octokit/rest": "^18.0.0", + "await-to-js": "^2.1.1", + "chalk": "^4.0.0", + "cosmiconfig": "7.0.0", + "deepmerge": "^4.0.0", + "dotenv": "^8.0.0", + "endent": "^2.0.1", + "enquirer": "^2.3.4", + "env-ci": "^5.0.1", + "fast-glob": "^3.1.1", + "fp-ts": "^2.5.3", + "fromentries": "^1.2.0", + "gitlog": "^4.0.3", + "https-proxy-agent": "^5.0.0", + "import-cwd": "^3.0.0", + "import-from": "^3.0.0", + "io-ts": "^2.1.2", + "lodash.chunk": "^4.2.0", + "log-symbols": "^4.0.0", + "node-fetch": "2.6.1", + "parse-author": "^2.0.0", + "parse-github-url": "1.0.2", + "pretty-ms": "^7.0.0", + "semver": "^7.0.0", + "signale": "^1.4.0", + "tapable": "^2.0.0-beta.2", + "terminal-link": "^2.1.1", + "tinycolor2": "^1.4.1", + "tslib": "2.0.1", + "type-fest": "^0.16.0", + "typescript-memoize": "^1.0.0-alpha.3", + "url-join": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "semver": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", + "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tslib": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.1.tgz", + "integrity": "sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ==", + "dev": true + }, + "type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "dev": true + } + } + }, + "@auto-it/npm": { + "version": "9.61.0", + "resolved": "https://registry.npmjs.org/@auto-it/npm/-/npm-9.61.0.tgz", + "integrity": "sha512-tOMz5BOWYK5HcE8RC0KHc771T3gli52El6hQEogzN+a5sJPGz9j5veXeEmhfL5VXJay+ktAi41aC9cmaNGvt9w==", + "dev": true, + "requires": { + "@auto-it/core": "9.61.0", + "await-to-js": "^2.1.1", + "env-ci": "^5.0.1", + "fp-ts": "^2.5.3", + "get-monorepo-packages": "^1.1.0", + "io-ts": "^2.1.2", + "parse-author": "^2.0.0", + "parse-github-url": "1.0.2", + "registry-url": "^5.1.0", + "semver": "^7.0.0", + "tslib": "2.0.1", + "typescript-memoize": "^1.0.0-alpha.3", + "url-join": "^4.0.0", + "user-home": "^2.0.0" + }, + "dependencies": { + "semver": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", + "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==", + "dev": true + }, + "tslib": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.1.tgz", + "integrity": "sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ==", + "dev": true + } + } + }, + "@auto-it/released": { + "version": "9.61.0", + "resolved": "https://registry.npmjs.org/@auto-it/released/-/released-9.61.0.tgz", + "integrity": "sha512-CLJT0a05ze7amKgwys+vBI3QA4D9d6mpisi0ibsICXdq1sK2iAiiB19f/ZxCSqIZS1FcivxYXefI4G8itnUH7A==", + "dev": true, + "requires": { + "@auto-it/core": "9.61.0", + "deepmerge": "^4.0.0", + "fp-ts": "^2.5.3", + "io-ts": "^2.1.2", + "tslib": "2.0.1" + }, + "dependencies": { + "tslib": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.1.tgz", + "integrity": "sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ==", + "dev": true + } + } + }, "@babel/code-frame": { "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", @@ -224,12 +400,198 @@ "integrity": "sha512-kBa+cDHOR9jpRJ+kcGMsysrls0leukrm68DmFQoMIWQcXdr2cZvyvypWuGYT7U+9kAExUE7+T7r6G3C3A6L8MQ==", "dev": true }, + "@nodelib/fs.scandir": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz", + "integrity": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.3", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz", + "integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz", + "integrity": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.3", + "fastq": "^1.6.0" + } + }, + "@octokit/auth-token": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.4.3.tgz", + "integrity": "sha512-fdGoOQ3kQJh+hrilc0Plg50xSfaCKOeYN9t6dpJKXN9BxhhfquL0OzoQXg3spLYymL5rm29uPeI3KEXRaZQ9zg==", + "dev": true, + "requires": { + "@octokit/types": "^5.0.0" + } + }, + "@octokit/core": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-3.2.1.tgz", + "integrity": "sha512-XfFSDDwv6tclUenS0EmB6iA7u+4aOHBT1Lz4PtQNQQg3hBbNaR/+Uv5URU+egeIuuGAiMRiDyY92G4GBOWOqDA==", + "dev": true, + "requires": { + "@octokit/auth-token": "^2.4.0", + "@octokit/graphql": "^4.3.1", + "@octokit/request": "^5.4.0", + "@octokit/types": "^5.0.0", + "before-after-hook": "^2.1.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/endpoint": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.9.tgz", + "integrity": "sha512-3VPLbcCuqji4IFTclNUtGdp9v7g+nspWdiCUbK3+iPMjJCZ6LEhn1ts626bWLOn0GiDb6j+uqGvPpqLnY7pBgw==", + "dev": true, + "requires": { + "@octokit/types": "^5.0.0", + "is-plain-object": "^5.0.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/graphql": { + "version": "4.5.7", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.5.7.tgz", + "integrity": "sha512-Gk0AR+DcwIK/lK/GX+OQ99UqtenQhcbrhHHfOYlrCQe17ADnX3EKAOKRsAZ9qZvpi5MuwWm/Nm+9aO2kTDSdyA==", + "dev": true, + "requires": { + "@octokit/request": "^5.3.0", + "@octokit/types": "^5.0.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/plugin-enterprise-compatibility": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@octokit/plugin-enterprise-compatibility/-/plugin-enterprise-compatibility-1.2.6.tgz", + "integrity": "sha512-Wc/qLOk4i9VTvoSiTBO1KJ1FqscG4PVM28DccKnKxwadkuvYbRlghKYisb/b8xTHnYBR2WpWXGppDjPaAKJxDw==", + "dev": true, + "requires": { + "@octokit/request-error": "^2.0.0", + "@octokit/types": "^5.0.0" + } + }, + "@octokit/plugin-paginate-rest": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.6.0.tgz", + "integrity": "sha512-o+O8c1PqsC5++BHXfMZabRRsBIVb34tXPWyQLyp2IXq5MmkxdipS7TXM4Y9ldL1PzY9CTrCsn/lzFFJGM3oRRA==", + "dev": true, + "requires": { + "@octokit/types": "^5.5.0" + } + }, + "@octokit/plugin-request-log": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.2.tgz", + "integrity": "sha512-oTJSNAmBqyDR41uSMunLQKMX0jmEXbwD1fpz8FG27lScV3RhtGfBa1/BBLym+PxcC16IBlF7KH9vP1BUYxA+Eg==", + "dev": true + }, + "@octokit/plugin-rest-endpoint-methods": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-4.2.1.tgz", + "integrity": "sha512-QyFr4Bv807Pt1DXZOC5a7L5aFdrwz71UHTYoHVajYV5hsqffWm8FUl9+O7nxRu5PDMtB/IKrhFqTmdBTK5cx+A==", + "dev": true, + "requires": { + "@octokit/types": "^5.5.0", + "deprecation": "^2.3.1" + } + }, + "@octokit/plugin-retry": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-3.0.4.tgz", + "integrity": "sha512-E6TqaUvIzJM00dRAnlKUWlkVwJ4jup8zzCvmhx4eoK0lOc2jhiqn6P2tMH3OZky8VoWnjRO8IG9bHy164MlVrQ==", + "dev": true, + "requires": { + "@octokit/types": "^5.0.0", + "bottleneck": "^2.15.3" + } + }, + "@octokit/plugin-throttling": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-3.3.3.tgz", + "integrity": "sha512-G9BLSE33Vijc45qRuQ8uGF8N1YOk0i8nKosgGJw8TRH+CRjoPDMxYuo28roGiHvFZ5t2KArbJlneZb499wApLA==", + "dev": true, + "requires": { + "@octokit/types": "^5.5.0", + "bottleneck": "^2.15.3" + } + }, + "@octokit/request": { + "version": "5.4.10", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.4.10.tgz", + "integrity": "sha512-egA49HkqEORVGDZGav1mh+VD+7uLgOxtn5oODj6guJk0HCy+YBSYapFkSLFgeYj3Fr18ZULKGURkjyhkAChylw==", + "dev": true, + "requires": { + "@octokit/endpoint": "^6.0.1", + "@octokit/request-error": "^2.0.0", + "@octokit/types": "^5.0.0", + "deprecation": "^2.0.0", + "is-plain-object": "^5.0.0", + "node-fetch": "^2.6.1", + "once": "^1.4.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/request-error": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.0.3.tgz", + "integrity": "sha512-GgD5z8Btm301i2zfvJLk/mkhvGCdjQ7wT8xF9ov5noQY8WbKZDH9cOBqXzoeKd1mLr1xH2FwbtGso135zGBgTA==", + "dev": true, + "requires": { + "@octokit/types": "^5.0.1", + "deprecation": "^2.0.0", + "once": "^1.4.0" + } + }, + "@octokit/rest": { + "version": "18.0.9", + "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-18.0.9.tgz", + "integrity": "sha512-CC5+cIx974Ygx9lQNfUn7/oXDQ9kqGiKUC6j1A9bAVZZ7aoTF8K6yxu0pQhQrLBwSl92J6Z3iVDhGhGFgISCZg==", + "dev": true, + "requires": { + "@octokit/core": "^3.0.0", + "@octokit/plugin-paginate-rest": "^2.2.0", + "@octokit/plugin-request-log": "^1.0.0", + "@octokit/plugin-rest-endpoint-methods": "4.2.1" + } + }, + "@octokit/types": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-5.5.0.tgz", + "integrity": "sha512-UZ1pErDue6bZNjYOotCNveTXArOMZQFG6hKJfOnGnulVCMcVVi7YIIuuR4WfBhjo7zgpmzn/BkPDnUXtNx+PcQ==", + "dev": true, + "requires": { + "@types/node": ">= 8" + } + }, "@types/color-name": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", "dev": true }, + "@types/command-line-args": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@types/command-line-args/-/command-line-args-5.0.0.tgz", + "integrity": "sha512-4eOPXyn5DmP64MCMF8ePDvdlvlzt2a+F8ZaVjqmh2yFCpGjc1kI3kGnCFYX9SCsGTjQcWIyVZ86IHCEyjy/MNg==", + "dev": true + }, + "@types/command-line-usage": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/command-line-usage/-/command-line-usage-5.0.1.tgz", + "integrity": "sha512-/xUgezxxYePeXhg5S04hUjxG9JZi+rJTs1+4NwpYPfSaS7BeDa6tVJkH6lN9Cb6rl8d24Fi2uX0s0Ngg2JT6gg==", + "dev": true + }, "@types/estree": { "version": "0.0.39", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", @@ -242,6 +604,12 @@ "integrity": "sha512-4uPUyY1Aofo1YzoypalYHNd2SnKYxH2b6LzXwpryZCJKA2XlagZSynXx5C8sfPH0r1cSltUpaVHV2q5sYXschQ==", "dev": true }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, "accepts": { "version": "1.3.7", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", @@ -264,6 +632,15 @@ "integrity": "sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==", "dev": true }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "requires": { + "debug": "4" + } + }, "ajv": { "version": "6.12.0", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.0.tgz", @@ -276,6 +653,12 @@ "uri-js": "^4.2.2" } }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, "ansi-escapes": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz", @@ -326,6 +709,12 @@ "commander": "^2.11.0" } }, + "array-back": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", + "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==", + "dev": true + }, "array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", @@ -343,6 +732,21 @@ "is-string": "^1.0.5" } }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + }, "array.prototype.flat": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz", @@ -365,6 +769,94 @@ "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", "dev": true }, + "author-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/author-regex/-/author-regex-1.0.0.tgz", + "integrity": "sha1-0IiFvmubv5Q5/gh8dihyRfCoFFA=", + "dev": true + }, + "auto": { + "version": "9.61.0", + "resolved": "https://registry.npmjs.org/auto/-/auto-9.61.0.tgz", + "integrity": "sha512-k9MP2xEjgTO6dtDvJsgOoZf4V+ceBnPk7MMyHr98kJru4IpZ+/GSXeiYrrqQKwmaNUx6FuhW/qTFfk3SHIQ9bA==", + "dev": true, + "requires": { + "@auto-it/core": "9.61.0", + "@auto-it/npm": "9.61.0", + "@auto-it/released": "9.61.0", + "await-to-js": "^2.1.1", + "chalk": "^4.0.0", + "command-line-application": "^0.10.1", + "endent": "^2.0.1", + "module-alias": "^2.2.2", + "signale": "^1.4.0", + "terminal-link": "^2.1.1", + "tslib": "2.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tslib": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.1.tgz", + "integrity": "sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ==", + "dev": true + } + } + }, + "await-to-js": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/await-to-js/-/await-to-js-2.1.1.tgz", + "integrity": "sha512-CHBC6gQGCIzjZ09tJ+XmpQoZOn4GdWePB4qUweCaKNJ0D3f115YdhmYVTZ4rMVpiJ3cFzZcTYK1VMYEICV4YXw==", + "dev": true + }, "axobject-query": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.1.2.tgz", @@ -518,6 +1010,12 @@ "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", "dev": true }, + "before-after-hook": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.1.0.tgz", + "integrity": "sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A==", + "dev": true + }, "body-parser": { "version": "1.18.3", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", @@ -562,6 +1060,12 @@ } } }, + "bottleneck": { + "version": "2.19.5", + "resolved": "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz", + "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==", + "dev": true + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -572,6 +1076,15 @@ "concat-map": "0.0.1" } }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, "bytes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", @@ -634,6 +1147,68 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, + "command-line-application": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/command-line-application/-/command-line-application-0.10.1.tgz", + "integrity": "sha512-PWZ4nRkz09MbBRocqEe/Fil3RjTaMNqw0didl1n/i3flDcw/vecVfvsw3r+ZHhGs4BOuW7sk3cEYSdfM3Wv5/Q==", + "dev": true, + "requires": { + "@types/command-line-args": "^5.0.0", + "@types/command-line-usage": "^5.0.1", + "chalk": "^2.4.1", + "command-line-args": "^5.1.1", + "command-line-usage": "^6.0.0", + "meant": "^1.0.1", + "remove-markdown": "^0.3.0", + "tslib": "1.10.0" + }, + "dependencies": { + "tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", + "dev": true + } + } + }, + "command-line-args": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.1.1.tgz", + "integrity": "sha512-hL/eG8lrll1Qy1ezvkant+trihbGnaKaeEjj6Scyr3DN+RC7iQ5Rz84IeLERfAWDGo0HBSNAakczwgCilDXnWg==", + "dev": true, + "requires": { + "array-back": "^3.0.1", + "find-replace": "^3.0.0", + "lodash.camelcase": "^4.3.0", + "typical": "^4.0.0" + } + }, + "command-line-usage": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.1.tgz", + "integrity": "sha512-F59pEuAR9o1SF/bD0dQBDluhpT4jJQNWUHEuVBqpDmCUo6gPjCi+m9fCWnWZVR/oG6cMTUms4h+3NPl74wGXvA==", + "dev": true, + "requires": { + "array-back": "^4.0.1", + "chalk": "^2.4.2", + "table-layout": "^1.0.1", + "typical": "^5.2.0" + }, + "dependencies": { + "array-back": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.1.tgz", + "integrity": "sha512-Z/JnaVEXv+A9xabHzN43FiiiWEE7gPCRXMrVmRm00tWbjZRul1iHm7ECzlyNq1p4a4ATXz+G9FJ3GqGOkOV3fg==", + "dev": true + }, + "typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "dev": true + } + } + }, "commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", @@ -685,6 +1260,45 @@ "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", "dev": true }, + "core-js": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz", + "integrity": "sha1-TekR5mew6ukSTjQlS1OupvxhjT4=", + "dev": true + }, + "cosmiconfig": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", + "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "dependencies": { + "parse-json": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz", + "integrity": "sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + } + } + }, "cross-spawn": { "version": "6.0.5", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", @@ -729,12 +1343,30 @@ "ms": "^2.1.1" } }, + "dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", + "dev": true + }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true + }, "deep-is": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", "dev": true }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "dev": true + }, "define-properties": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", @@ -750,12 +1382,44 @@ "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", "dev": true }, + "deprecation": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", + "dev": true + }, "destroy": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", "dev": true }, + "dir-glob": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz", + "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", + "dev": true, + "requires": { + "path-type": "^3.0.0" + }, + "dependencies": { + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, "doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", @@ -788,6 +1452,45 @@ "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", "dev": true }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "endent": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/endent/-/endent-2.0.1.tgz", + "integrity": "sha512-mADztvcC+vCk4XEZaCz6xIPO2NHQuprv5CAEjuVAu6aZwqAj7nVNlMyl1goPFYqCCpS2OJV9jwpumJLkotZrNw==", + "dev": true, + "requires": { + "dedent": "^0.7.0", + "fast-json-parse": "^1.0.3", + "objectorarray": "^1.0.4" + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "env-ci": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-5.0.2.tgz", + "integrity": "sha512-Xc41mKvjouTXD3Oy9AqySz1IeyvJvHZ20Twf5ZLYbNpPPIuCnL/qHCmNlD01LoNy0JTunw9HPYVptD19Ac7Mbw==", + "dev": true, + "requires": { + "execa": "^4.0.0", + "java-properties": "^1.0.0" + } + }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -1159,6 +1862,66 @@ "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", "dev": true }, + "execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, "express": { "version": "4.16.4", "resolved": "https://registry.npmjs.org/express/-/express-4.16.4.tgz", @@ -1231,6 +1994,26 @@ "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==", "dev": true }, + "fast-glob": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz", + "integrity": "sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + } + }, + "fast-json-parse": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fast-json-parse/-/fast-json-parse-1.0.3.tgz", + "integrity": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==", + "dev": true + }, "fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", @@ -1243,6 +2026,15 @@ "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", "dev": true }, + "fastq": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.9.0.tgz", + "integrity": "sha512-i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, "figures": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", @@ -1261,6 +2053,15 @@ "flat-cache": "^2.0.1" } }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, "finalhandler": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", @@ -1293,6 +2094,15 @@ } } }, + "find-replace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", + "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", + "dev": true, + "requires": { + "array-back": "^3.0.1" + } + }, "find-up": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", @@ -1325,12 +2135,24 @@ "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", "dev": true }, + "fp-ts": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/fp-ts/-/fp-ts-2.8.5.tgz", + "integrity": "sha512-g6do+Q/IQsxgsd2qU6+QnAbZaPR533seIbFyLGqWSxhNX4+F+cY37QdaYmMUOzekLOv/yg/2f15tc26tzDatgw==", + "dev": true + }, "fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", "dev": true }, + "fromentries": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz", + "integrity": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==", + "dev": true + }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -1349,6 +2171,65 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", "dev": true }, + "get-monorepo-packages": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-monorepo-packages/-/get-monorepo-packages-1.2.0.tgz", + "integrity": "sha512-aDP6tH+eM3EuVSp3YyCutOcFS4Y9AhRRH9FAd+cjtR/g63Hx+DCXdKoP1ViRPUJz5wm+BOEXB4FhoffGHxJ7jQ==", + "dev": true, + "requires": { + "globby": "^7.1.1", + "load-json-file": "^4.0.0" + }, + "dependencies": { + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "gitlog": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/gitlog/-/gitlog-4.0.3.tgz", + "integrity": "sha512-rWejI3r/UXo2egYMJRwI3w/lTVNjP8yT9oz29hkv69qlatKj3Y0PmUYU1x+3fILx+qJJBKjEEHgYTFygOV3a+Q==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "tslib": "^1.11.1" + } + }, "glob": { "version": "7.1.6", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", @@ -1377,6 +2258,34 @@ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" }, + "globby": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz", + "integrity": "sha1-+yzP+UAfhgCUXfral0QMypcrhoA=", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "dir-glob": "^2.0.0", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + }, + "dependencies": { + "ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", + "dev": true + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, "graceful-fs": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", @@ -1429,6 +2338,22 @@ } } }, + "https-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", + "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", + "dev": true, + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true + }, "iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", @@ -1444,6 +2369,15 @@ "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "dev": true }, + "import-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz", + "integrity": "sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==", + "dev": true, + "requires": { + "import-from": "^3.0.0" + } + }, "import-fresh": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", @@ -1454,6 +2388,23 @@ "resolve-from": "^4.0.0" } }, + "import-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz", + "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + } + } + }, "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", @@ -1476,6 +2427,12 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, + "ini": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", + "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "dev": true + }, "inquirer": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.0.6.tgz", @@ -1569,6 +2526,12 @@ "side-channel": "^1.0.2" } }, + "io-ts": { + "version": "2.2.12", + "resolved": "https://registry.npmjs.org/io-ts/-/io-ts-2.2.12.tgz", + "integrity": "sha512-pZh43E3xs1RUmv3voC58Mbb6Ihjo3UdDU6WWi578Zpe2BxVue1SlSQCioSymZxk9HoXa370nSfFzp5LrLA2F8g==", + "dev": true + }, "ipaddr.js": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz", @@ -1614,6 +2577,18 @@ "is-extglob": "^2.1.1" } }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true + }, "is-promise": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", @@ -1629,6 +2604,12 @@ "has": "^1.0.3" } }, + "is-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", + "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", + "dev": true + }, "is-string": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", @@ -1662,6 +2643,12 @@ "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "dev": true }, + "java-properties": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz", + "integrity": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==", + "dev": true + }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -1682,6 +2669,18 @@ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, "json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -1723,6 +2722,12 @@ "type-check": "~0.3.2" } }, + "lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", + "dev": true + }, "load-json-file": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", @@ -1750,6 +2755,78 @@ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz", "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=", + "dev": true + }, + "lodash.chunk": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.chunk/-/lodash.chunk-4.2.0.tgz", + "integrity": "sha1-ZuXOH3btJ7QwPYxlEujRIW6BBrw=", + "dev": true + }, + "log-symbols": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz", + "integrity": "sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==", + "dev": true, + "requires": { + "chalk": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, "loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", @@ -1758,6 +2835,12 @@ "js-tokens": "^3.0.0 || ^4.0.0" } }, + "meant": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/meant/-/meant-1.0.2.tgz", + "integrity": "sha512-KN+1uowN/NK+sT/Lzx7WSGIj2u+3xe5n2LbwObfjOhPZiA+cCfCm6idVl0RkEfjThkw5XJ96CyRcanq6GmKtUg==", + "dev": true + }, "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", @@ -1785,12 +2868,34 @@ "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", "dev": true }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, "methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", "dev": true }, + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + } + }, "mime": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", @@ -1842,6 +2947,12 @@ "minimist": "^1.2.5" } }, + "module-alias": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/module-alias/-/module-alias-2.2.2.tgz", + "integrity": "sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==", + "dev": true + }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", @@ -1871,6 +2982,12 @@ "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", "dev": true }, + "node-fetch": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", + "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", + "dev": true + }, "normalize-package-data": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", @@ -1883,6 +3000,23 @@ "validate-npm-package-license": "^3.0.1" } }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + }, + "dependencies": { + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + } + } + }, "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", @@ -1948,6 +3082,12 @@ "has": "^1.0.3" } }, + "objectorarray": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/objectorarray/-/objectorarray-1.0.4.tgz", + "integrity": "sha512-91k8bjcldstRz1bG6zJo8lWD7c6QXcB4nTDUqiEvIL1xAsLoZlOOZZG+nd6YPz+V7zY1580J4Xxh1vZtyv4i/w==", + "dev": true + }, "on-finished": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", @@ -1989,6 +3129,12 @@ "word-wrap": "~1.2.3" } }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true + }, "os-tmpdir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", @@ -2028,6 +3174,21 @@ "callsites": "^3.0.0" } }, + "parse-author": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-author/-/parse-author-2.0.0.tgz", + "integrity": "sha1-00YL8d3Q367tQtp1QkLmX7aEqB8=", + "dev": true, + "requires": { + "author-regex": "^1.0.0" + } + }, + "parse-github-url": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.2.tgz", + "integrity": "sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==", + "dev": true + }, "parse-json": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", @@ -2037,6 +3198,12 @@ "error-ex": "^1.2.0" } }, + "parse-ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz", + "integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==", + "dev": true + }, "parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -2081,12 +3248,58 @@ "pify": "^2.0.0" } }, + "picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "dev": true + }, "pify": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", "dev": true }, + "pkg-conf": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", + "integrity": "sha1-ISZRTKbyq/69FoWW3xi6V4Z/AFg=", + "dev": true, + "requires": { + "find-up": "^2.0.0", + "load-json-file": "^4.0.0" + }, + "dependencies": { + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, "pkg-dir": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", @@ -2114,6 +3327,15 @@ "integrity": "sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw==", "dev": true }, + "pretty-ms": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz", + "integrity": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==", + "dev": true, + "requires": { + "parse-ms": "^2.1.0" + } + }, "progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -2140,6 +3362,16 @@ "ipaddr.js": "1.9.0" } }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, "punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", @@ -2181,6 +3413,26 @@ } } }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true + } + } + }, "react": { "version": "16.11.0", "resolved": "https://registry.npmjs.org/react/-/react-16.11.0.tgz", @@ -2227,6 +3479,12 @@ "read-pkg": "^2.0.0" } }, + "reduce-flatten": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", + "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==", + "dev": true + }, "regenerator-runtime": { "version": "0.13.3", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz", @@ -2242,6 +3500,21 @@ "es-abstract": "^1.17.0-next.1" } }, + "registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "dev": true, + "requires": { + "rc": "^1.2.8" + } + }, + "remove-markdown": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/remove-markdown/-/remove-markdown-0.3.0.tgz", + "integrity": "sha1-XktmdJOpNXlyjz1S7MHbnKUF3Jg=", + "dev": true + }, "resolve": { "version": "1.12.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz", @@ -2266,6 +3539,12 @@ "signal-exit": "^3.0.2" } }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, "rimraf": { "version": "2.6.3", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", @@ -2322,6 +3601,12 @@ "is-promise": "^2.1.0" } }, + "run-parallel": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz", + "integrity": "sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==", + "dev": true + }, "rxjs": { "version": "6.5.4", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.4.tgz", @@ -2436,6 +3721,34 @@ "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", "dev": true }, + "signale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", + "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", + "dev": true, + "requires": { + "chalk": "^2.3.2", + "figures": "^2.0.0", + "pkg-conf": "^2.1.0" + }, + "dependencies": { + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + } + } + }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", + "dev": true + }, "slice-ansi": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", @@ -2589,6 +3902,12 @@ "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", "dev": true }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, "strip-json-comments": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz", @@ -2636,6 +3955,33 @@ "has-flag": "^3.0.0" } }, + "supports-hyperlinks": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz", + "integrity": "sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==", + "dev": true, + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, "table": { "version": "5.4.6", "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", @@ -2667,6 +4013,48 @@ } } }, + "table-layout": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.1.tgz", + "integrity": "sha512-dEquqYNJiGwY7iPfZ3wbXDI944iqanTSchrACLL2nOB+1r+h1Nzu2eH+DuPPvWvm5Ry7iAPeFlgEtP5bIp5U7Q==", + "dev": true, + "requires": { + "array-back": "^4.0.1", + "deep-extend": "~0.6.0", + "typical": "^5.2.0", + "wordwrapjs": "^4.0.0" + }, + "dependencies": { + "array-back": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.1.tgz", + "integrity": "sha512-Z/JnaVEXv+A9xabHzN43FiiiWEE7gPCRXMrVmRm00tWbjZRul1iHm7ECzlyNq1p4a4ATXz+G9FJ3GqGOkOV3fg==", + "dev": true + }, + "typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "dev": true + } + } + }, + "tapable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.1.1.tgz", + "integrity": "sha512-Wib1S8m2wdpLbmQz0RBEVosIyvb/ykfKXf3ZIDqvWoMg/zTNm6G/tDSuUM61J1kNCDXWJrLHGSFeMhAG+gAGpQ==", + "dev": true + }, + "terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + } + }, "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", @@ -2679,6 +4067,12 @@ "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", "dev": true }, + "tinycolor2": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", + "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==", + "dev": true + }, "tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", @@ -2693,6 +4087,15 @@ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, "tslib": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz", @@ -2724,6 +4127,27 @@ "mime-types": "~2.1.24" } }, + "typescript-memoize": { + "version": "1.0.0-alpha.3", + "resolved": "https://registry.npmjs.org/typescript-memoize/-/typescript-memoize-1.0.0-alpha.3.tgz", + "integrity": "sha1-aZpUFfiGaUqNbi5UUbwoo5prwvk=", + "dev": true, + "requires": { + "core-js": "2.4.1" + } + }, + "typical": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", + "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==", + "dev": true + }, + "universal-user-agent": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", + "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", + "dev": true + }, "unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", @@ -2739,6 +4163,21 @@ "punycode": "^2.1.0" } }, + "url-join": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", + "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", + "dev": true + }, + "user-home": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz", + "integrity": "sha1-nHC/2Babwdy/SGBODwS4tJzenp8=", + "dev": true, + "requires": { + "os-homedir": "^1.0.0" + } + }, "utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", @@ -2782,6 +4221,24 @@ "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "dev": true }, + "wordwrapjs": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.0.tgz", + "integrity": "sha512-Svqw723a3R34KvsMgpjFBYCgNOSdcW3mQFK4wIfhGQhtaFVOJmdYoXgi63ne3dTlWgatVcUc7t4HtQ/+bUVIzQ==", + "dev": true, + "requires": { + "reduce-flatten": "^2.0.0", + "typical": "^5.0.0" + }, + "dependencies": { + "typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "dev": true + } + } + }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -2796,6 +4253,12 @@ "requires": { "mkdirp": "^0.5.1" } + }, + "yaml": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz", + "integrity": "sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==", + "dev": true } } } diff --git a/package.json b/package.json index 7c768a9..ad9d06d 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,8 @@ "start": "npm run serve", "test": "npm run lint", "prepublishOnly": "npm test && npm run rollup", - "postversion": "npm run changelog" + "postversion": "npm run changelog", + "release": "auto shipit --base-branch=main" }, "dependencies": { "dotenv": "^8.2.0", @@ -35,6 +36,7 @@ "styled-components": "^4.3.0" }, "devDependencies": { + "auto": "^9.53.1", "@babel/core": "^7.6.0", "@babel/plugin-transform-react-jsx": "^7.2.0", "babel-plugin-styled-components": "1.10.5", @@ -54,6 +56,9 @@ "repository": { "url": "https://github.com/glitchdotcom/shared-components" }, + "publishConfig": { + "registry": "https://npm.pkg.github.com/" + }, "license": "MIT", "keywords": [ "node", From 6e3ecbb815d3a503499c83ce1b8114d1de9ebdbc Mon Sep 17 00:00:00 2001 From: Keith Date: Tue, 10 Nov 2020 11:22:30 -0800 Subject: [PATCH 2/3] Use github packages --- .github/workflows/release.yml | 2 +- changelog.md | 504 ++++++++++++++++++++++++++++++++++ package.json | 2 +- 3 files changed, 506 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e9d5ac9..3477146 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: NPM_TOKEN: ${{ secrets.GH_TOKEN }} run: | npm install --frozen-lockfile - npm run build + npm run rollup - name: Create Release env: diff --git a/changelog.md b/changelog.md index b2dcfe1..28cda72 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,507 @@ +# v0.18.13 (Tue Nov 10 2020) + +#### ๐Ÿ› Bug Fix + +- Update Styling to SearchResults component [#126](https://github.com/glitchdotcom/shared-components/pull/126) ([@anjapatel](https://github.com/anjapatel)) +- fix tooltip [#125](https://github.com/glitchdotcom/shared-components/pull/125) ([@anjapatel](https://github.com/anjapatel)) +- Don't propagate notification close button clicks [#124](https://github.com/glitchdotcom/shared-components/pull/124) ([@sheridanvk](https://github.com/sheridanvk)) +- Swap notification and overlay z-index [#123](https://github.com/glitchdotcom/shared-components/pull/123) ([@sheridanvk](https://github.com/sheridanvk)) +- [ch18573] Add new icons for project privacy. [#122](https://github.com/glitchdotcom/shared-components/pull/122) ([@Osmose](https://github.com/Osmose)) +- Don't show the Results List if there's nothing to show yet [#121](https://github.com/glitchdotcom/shared-components/pull/121) (none [@sheridanvk](https://github.com/sheridanvk)) +- Add gift emoji [#120](https://github.com/glitchdotcom/shared-components/pull/120) (none [@sheridanvk](https://github.com/sheridanvk)) +- Added dark mode for cta button [#105](https://github.com/glitchdotcom/shared-components/pull/105) (none [@sheridanvk](https://github.com/sheridanvk)) +- Add clock/info icons and fix multiline-tooltip bug. [#118](https://github.com/glitchdotcom/shared-components/pull/118) ([@Osmose](https://github.com/Osmose)) +- add banner variant to Overlay [#117](https://github.com/glitchdotcom/shared-components/pull/117) ([@anjapatel](https://github.com/anjapatel)) +- Add `show` prop to VisuallyHidden. [#116](https://github.com/glitchdotcom/shared-components/pull/116) ([@Osmose](https://github.com/Osmose)) +- [ch16918] Add text-colored lightning bolt icon. [#115](https://github.com/glitchdotcom/shared-components/pull/115) ([@Osmose](https://github.com/Osmose)) +- Rocket emoji [#114](https://github.com/glitchdotcom/shared-components/pull/114) ([@modernserf](https://github.com/modernserf)) +- icon updates [#113](https://github.com/glitchdotcom/shared-components/pull/113) ([@modernserf](https://github.com/modernserf)) +- update toggle component to work with app dashboard [#112](https://github.com/glitchdotcom/shared-components/pull/112) ([@modernserf](https://github.com/modernserf)) +- create checkbox shared component [#109](https://github.com/glitchdotcom/shared-components/pull/109) ([@modernserf](https://github.com/modernserf)) +- Update domain when initial name changes [#108](https://github.com/glitchdotcom/shared-components/pull/108) ([@modernserf](https://github.com/modernserf)) +- Add searchGalaxy icon [#107](https://github.com/glitchdotcom/shared-components/pull/107) ([@oliviacpu](https://github.com/oliviacpu)) +- fix defaultSrc behavior if src is null [#106](https://github.com/glitchdotcom/shared-components/pull/106) ([@modernserf](https://github.com/modernserf)) +- EditableProjectDomain and a backarrow [#104](https://github.com/glitchdotcom/shared-components/pull/104) ([@sarahzinger](https://github.com/sarahzinger)) +- Shared tooltip ! [#103](https://github.com/glitchdotcom/shared-components/pull/103) (none [@clottman](https://github.com/clottman)) +- Circle CI changes [#99](https://github.com/glitchdotcom/shared-components/pull/99) ([@clottman](https://github.com/clottman)) +- Export the inputs from v0.14.3 & add 'adding a new component' docs [#98](https://github.com/glitchdotcom/shared-components/pull/98) (clottman@users.noreply.github.com [@clottman](https://github.com/clottman)) +- Resisted prickly sand: add Optimistic Inputs to shared components [#97](https://github.com/glitchdotcom/shared-components/pull/97) (none clottman@users.noreply.github.com [@clottman](https://github.com/clottman)) +- Update update script be smarter [#96](https://github.com/glitchdotcom/shared-components/pull/96) (clottman@users.noreply.github.com [@clottman](https://github.com/clottman)) +- fix file watcher [#95](https://github.com/glitchdotcom/shared-components/pull/95) ([@modernserf](https://github.com/modernserf)) +- Make external icon into an svg so it can go dark-mode [#94](https://github.com/glitchdotcom/shared-components/pull/94) (clottman@users.noreply.github.com [@clottman](https://github.com/clottman)) +- Add square variant for avatar [#93](https://github.com/glitchdotcom/shared-components/pull/93) (clottman@users.noreply.github.com [@clottman](https://github.com/clottman)) +- Update instructions for testing locally & creating prerelease versions [#87](https://github.com/glitchdotcom/shared-components/pull/87) (clottman@users.noreply.github.com [@clottman](https://github.com/clottman)) +- Ch10546: add icons for new footer [#90](https://github.com/glitchdotcom/shared-components/pull/90) (allyson@glitch.com [@whimsicallyson](https://github.com/whimsicallyson)) +- ResultsList: make code sample match how the component actually works [#89](https://github.com/glitchdotcom/shared-components/pull/89) (clottman@users.noreply.github.com [@clottman](https://github.com/clottman)) +- Boosted icon [#88](https://github.com/glitchdotcom/shared-components/pull/88) ([@modernserf](https://github.com/modernserf)) +- General-legendary-salary: fix linting [#86](https://github.com/glitchdotcom/shared-components/pull/86) (none clottman@users.noreply.github.com [@clottman](https://github.com/clottman)) +- @fogcreek replaced with @glitchdotcom [#85](https://github.com/glitchdotcom/shared-components/pull/85) (clottman@users.noreply.github.com [@clottman](https://github.com/clottman)) +- Diligent-free-kookaburra: update search icon to point opposite direction [#84](https://github.com/glitchdotcom/shared-components/pull/84) (none [@clottman](https://github.com/clottman)) +- Added persistent state for notifications and made default timeout 2.5s [#82](https://github.com/glitchdotcom/shared-components/pull/82) ([@sheridanvk](https://github.com/sheridanvk)) +- Merge previously approved PR into master [#83](https://github.com/glitchdotcom/shared-components/pull/83) ([@sheridanvk](https://github.com/sheridanvk)) +- Add ability to remove notifications [#81](https://github.com/glitchdotcom/shared-components/pull/81) ([@sheridanvk](https://github.com/sheridanvk)) +- Improve padding and width for Notifications [#80](https://github.com/glitchdotcom/shared-components/pull/80) ([@sheridanvk](https://github.com/sheridanvk)) +- Update github orgname in docs [#79](https://github.com/glitchdotcom/shared-components/pull/79) (clottman@users.noreply.github.com [@clottman](https://github.com/clottman)) +- Add final missing editor emoji and check in the new .glitch-assets file [#78](https://github.com/glitchdotcom/shared-components/pull/78) (none [@sheridanvk](https://github.com/sheridanvk)) +- Add Editor icons and adjust default icon size [#75](https://github.com/glitchdotcom/shared-components/pull/75) (none [@sheridanvk](https://github.com/sheridanvk)) +- Ritzy-dichondra: fix extraneous "true" in CSS for Button [#76](https://github.com/glitchdotcom/shared-components/pull/76) (none [@clottman](https://github.com/clottman)) +- Some publish script changes and updated contributing documentation [#73](https://github.com/glitchdotcom/shared-components/pull/73) ([@sarahzinger](https://github.com/sarahzinger)) +- Ajar math: a couple of styling updates [#74](https://github.com/glitchdotcom/shared-components/pull/74) (none [@whimsicallyson](https://github.com/whimsicallyson)) +- Sparkly-Dichondra: added release candidate instructions [#72](https://github.com/glitchdotcom/shared-components/pull/72) (none [@ttseng](https://github.com/ttseng)) +- Sparkly dichondra: Set Max-Width on Pop-overs [#71](https://github.com/glitchdotcom/shared-components/pull/71) (none [@ttseng](https://github.com/ttseng)) +- Shared components [#70](https://github.com/glitchdotcom/shared-components/pull/70) (none [@sarahzinger](https://github.com/sarahzinger)) +- Peppered deltadromeus: ResultItem fixes [#69](https://github.com/glitchdotcom/shared-components/pull/69) ([@sarahzinger](https://github.com/sarahzinger)) +- Add lightbulb emoji [#68](https://github.com/glitchdotcom/shared-components/pull/68) (none [@clottman](https://github.com/clottman)) +- Hurricane cyclone: add victory and refresh emoji [#67](https://github.com/glitchdotcom/shared-components/pull/67) (none [@whimsicallyson](https://github.com/whimsicallyson)) +- Add a consistent focus state to buttons and rowItems [#66](https://github.com/glitchdotcom/shared-components/pull/66) (none [@ehmorris](https://github.com/ehmorris)) +- Rich-red: make navigation usable when dev tools is open, and add links to popover/overlay blocks [#65](https://github.com/glitchdotcom/shared-components/pull/65) (none [@clottman](https://github.com/clottman)) +- Enable running shared-components locally [#62](https://github.com/glitchdotcom/shared-components/pull/62) (clottman@users.noreply.github.com [@clottman](https://github.com/clottman)) +- ๐Ÿ‹๐ŸšŠ Checkpoint [#64](https://github.com/glitchdotcom/shared-components/pull/64) (none [@whimsicallyson](https://github.com/whimsicallyson)) +- Added Emoji Instructions & Coffin Emoji [#63](https://github.com/glitchdotcom/shared-components/pull/63) (none [@ttseng](https://github.com/ttseng)) +- Popover fix [#61](https://github.com/glitchdotcom/shared-components/pull/61) ([@sarahzinger](https://github.com/sarahzinger)) +- Add semicolon to fix font size [#60](https://github.com/glitchdotcom/shared-components/pull/60) (allyson.schirmuhly@gmail.com [@clottman](https://github.com/clottman)) +- Blossom bougon: add startOpen prop to popover [#59](https://github.com/glitchdotcom/shared-components/pull/59) (none [@whimsicallyson](https://github.com/whimsicallyson)) +- Run the styled components babel plugin, replace sucrase with babel [#57](https://github.com/glitchdotcom/shared-components/pull/57) (none [@GregWeil](https://github.com/GregWeil)) +- Ionian oxygen: add block arrows [#58](https://github.com/glitchdotcom/shared-components/pull/58) (none [@modernserf](https://github.com/modernserf)) +- created contributing doc [#56](https://github.com/glitchdotcom/shared-components/pull/56) (none) +- ๐Ÿ—ผ๐Ÿ›Ž Checkpoint [#56](https://github.com/glitchdotcom/shared-components/pull/56) (none) +- Soapy azimuth: Add Glitch Logo to Icons [#52](https://github.com/glitchdotcom/shared-components/pull/52) (none [@ttseng](https://github.com/ttseng)) +- Gorgeous persimmon - Added nav [#55](https://github.com/glitchdotcom/shared-components/pull/55) (none [@ttseng](https://github.com/ttseng)) +- Luxurious navy: add 3px border radius to opaque text inputs [#54](https://github.com/glitchdotcom/shared-components/pull/54) (none [@modernserf](https://github.com/modernserf)) +- malachite-brass: add shuffle icon [#53](https://github.com/glitchdotcom/shared-components/pull/53) (none [@taravancil](https://github.com/taravancil)) +- Moved All Emoji to Shared Component Asset Library [#50](https://github.com/glitchdotcom/shared-components/pull/50) (none [@ttseng](https://github.com/ttseng)) +- Bittersweet antimony: Switch component [#51](https://github.com/glitchdotcom/shared-components/pull/51) (none [@modernserf](https://github.com/modernserf)) +- Focus styling for text inputs [#43](https://github.com/glitchdotcom/shared-components/pull/43) (none [@whimsicallyson](https://github.com/whimsicallyson)) +- Add television and telephone emoji [#49](https://github.com/glitchdotcom/shared-components/pull/49) (none [@taravancil](https://github.com/taravancil)) +- Salt turret: miscellaneous fixes & improvements [#48](https://github.com/glitchdotcom/shared-components/pull/48) (none [@modernserf](https://github.com/modernserf)) +- Move styled-components into a peer dependency [#47](https://github.com/glitchdotcom/shared-components/pull/47) (none [@GregWeil](https://github.com/GregWeil)) +- difficult-amethyst: add keyboard, new, and mouse emoji [#45](https://github.com/glitchdotcom/shared-components/pull/45) (none [@taravancil](https://github.com/taravancil)) +- undoing accidental merge [#46](https://github.com/glitchdotcom/shared-components/pull/46) ([@ttseng](https://github.com/ttseng)) +- Updated active button background colors [#41](https://github.com/glitchdotcom/shared-components/pull/41) ([@ttseng](https://github.com/ttseng)) +- Change button whitespace to normal [#40](https://github.com/glitchdotcom/shared-components/pull/40) (none [@whimsicallyson](https://github.com/whimsicallyson)) +- Fallacious garment: disabled button styling [#39](https://github.com/glitchdotcom/shared-components/pull/39) (none [@whimsicallyson](https://github.com/whimsicallyson)) +- Moored myth: Notifications [#30](https://github.com/glitchdotcom/shared-components/pull/30) (none [@modernserf](https://github.com/modernserf)) +- Aromatic brass: ButtonGroup & SegmentedButton [#32](https://github.com/glitchdotcom/shared-components/pull/32) (none [@modernserf](https://github.com/modernserf)) +- Shared components: changelog [#37](https://github.com/glitchdotcom/shared-components/pull/37) (none [@modernserf](https://github.com/modernserf)) +- Calm cilantro: badge component [#19](https://github.com/glitchdotcom/shared-components/pull/19) (none [@modernserf](https://github.com/modernserf)) +- Shrouded march: remove icon size docs [#36](https://github.com/glitchdotcom/shared-components/pull/36) (none [@modernserf](https://github.com/modernserf)) +- Scythe print: handle reduced motion in animation container [#34](https://github.com/glitchdotcom/shared-components/pull/34) (none [@modernserf](https://github.com/modernserf)) +- Numerous smartphone: improve contrast ratio for placeholder text [#35](https://github.com/glitchdotcom/shared-components/pull/35) (none [@modernserf](https://github.com/modernserf)) +- Jet accelerator: search results [#28](https://github.com/glitchdotcom/shared-components/pull/28) (none [@modernserf](https://github.com/modernserf)) +- v0.2.0 [#31](https://github.com/glitchdotcom/shared-components/pull/31) (none [@modernserf](https://github.com/modernserf)) +- Nervous cattle: update documentation for themes [#26](https://github.com/glitchdotcom/shared-components/pull/26) (none [@modernserf](https://github.com/modernserf)) +- Jazzy license: Overlay and Popover components [#25](https://github.com/glitchdotcom/shared-components/pull/25) (none [@modernserf](https://github.com/modernserf)) +- Endurable fan: AnimationContainer component [#24](https://github.com/glitchdotcom/shared-components/pull/24) (none [@modernserf](https://github.com/modernserf)) +- Olivine appeal: Mark component [#11](https://github.com/glitchdotcom/shared-components/pull/11) (none [@modernserf](https://github.com/modernserf)) +- Boulder insect: checkbox button component [#23](https://github.com/glitchdotcom/shared-components/pull/23) (none [@modernserf](https://github.com/modernserf)) +- Thread basil: changelog and helper script [#22](https://github.com/glitchdotcom/shared-components/pull/22) (none [@modernserf](https://github.com/modernserf)) +- Sour environment: remote component [#3](https://github.com/glitchdotcom/shared-components/pull/3) (none [@modernserf](https://github.com/modernserf)) +- Just log: script for publishing [#20](https://github.com/glitchdotcom/shared-components/pull/20) (none [@modernserf](https://github.com/modernserf)) +- Veil can: Avatar component [#18](https://github.com/glitchdotcom/shared-components/pull/18) (none [@modernserf](https://github.com/modernserf)) +- Stingy argument: TextInput & TextArea components [#16](https://github.com/glitchdotcom/shared-components/pull/16) (none [@modernserf](https://github.com/modernserf)) +- Fir nose: Button component [#15](https://github.com/glitchdotcom/shared-components/pull/15) (none [@modernserf](https://github.com/modernserf)) +- Neat sea 1: Loader [#10](https://github.com/glitchdotcom/shared-components/pull/10) (none [@modernserf](https://github.com/modernserf)) +- Chivalrous request: update package scope, repository [#13](https://github.com/glitchdotcom/shared-components/pull/13) (none [@modernserf](https://github.com/modernserf)) +- Navy agreement: fix icon merge [#12](https://github.com/glitchdotcom/shared-components/pull/12) (none [@modernserf](https://github.com/modernserf)) +- Instinctive armadillo: Icon component [#9](https://github.com/glitchdotcom/shared-components/pull/9) (none [@modernserf](https://github.com/modernserf)) +- Abaft spleen: exports [#7](https://github.com/glitchdotcom/shared-components/pull/7) (none [@modernserf](https://github.com/modernserf)) + +#### โš ๏ธ Pushed to `master` + +- changelog +- 0.14.4 +- 0.14.3 +- 0.14.2 +- 0.13.18 +- 0.13.17 +- undo messing with package version +- reset package.json version +- change name in package.json +- update changelog +- 0.13.16 +- 0.13.12 +- 0.18.12 ([@anjapatel](https://github.com/anjapatel)) +- update changelog ([@anjapatel](https://github.com/anjapatel)) +- 0.18.11 ([@anjapatel](https://github.com/anjapatel)) +- Update change log ([@sheridanvk](https://github.com/sheridanvk)) +- 0.18.10 ([@sheridanvk](https://github.com/sheridanvk)) +- Update release notes ([@sheridanvk](https://github.com/sheridanvk)) +- 0.18.9 ([@sheridanvk](https://github.com/sheridanvk)) +- 0.18.8 ([@Osmose](https://github.com/Osmose)) +- Update changeog ([@sheridanvk](https://github.com/sheridanvk)) +- 0.18.7 ([@sheridanvk](https://github.com/sheridanvk)) +- Update changelog ([@sheridanvk](https://github.com/sheridanvk)) +- 0.18.6 ([@sheridanvk](https://github.com/sheridanvk)) +- 0.18.5 ([@sheridanvk](https://github.com/sheridanvk)) +- 0.18.4 ([@Osmose](https://github.com/Osmose)) +- 0.18.3 ([@Osmose](https://github.com/Osmose)) +- 0.18.2 ([@Osmose](https://github.com/Osmose)) +- 0.18.1 ([@Osmose](https://github.com/Osmose)) +- Add searchGalaxy to icon set ([@oliviacpu](https://github.com/oliviacpu)) +- 0.14.8 ([@oliviacpu](https://github.com/oliviacpu)) +- Update changelog ([@sarahzinger](https://github.com/sarahzinger)) +- 0.14.6 ([@sarahzinger](https://github.com/sarahzinger)) +- changelog ([@clottman](https://github.com/clottman)) +- 0.14.5 ([@clottman](https://github.com/clottman)) +- changelog (allyson@glitch.com) +- 0.14.1 (allyson@glitch.com) +- 0.13.15 ([@sheridanvk](https://github.com/sheridanvk)) +- ๐Ÿฅ๐Ÿต Checkpoint (none) +- Merge branch 'master' of https://github.com/FogCreek/shared-components (none) +- 0.13.14 ([@sheridanvk](https://github.com/sheridanvk)) +- Updated changelog with the correct version this time ([@sheridanvk](https://github.com/sheridanvk)) +- 0.13.13 ([@sheridanvk](https://github.com/sheridanvk)) +- ๐Ÿ˜ฝ๐Ÿ•น Checkpoint (none) +- ๐ŸŒ๐Ÿค‘ Checkpoint (none) +- 0.13.11 ([@sarahzinger](https://github.com/sarahzinger)) +- new version for pop-overs (none) +- 0.13.9 (none) +- popover change (none) +- 0.13.8 (none) +- updated version to 0.13.16 (none) +- 0.13.6 (none) +- ๐Ÿ˜š๐Ÿฆ Checkpoint (none) +- update changelog (allyson@glitch.com) +- 0.13.4 (allyson@glitch.com) +- ๐Ÿด๐Ÿ‘– Checkpoint (none) +- 0.13.3 (none) +- 0.13.2 (none) +- added coffin emoji (none) +- merge conflict (allyson@glitch.com) +- 0.13.1 (allyson@glitch.com) +- package-lock update (allyson@glitch.com) +- fixed typo in contributing.md (none) +- ๐Ÿ™๐Ÿ˜ Checkpoint (none) +- 0.13.1 (none) +- ๐ŸŽท๐Ÿ’จ Checkpoint (none) +- added contributing instructions (none) +- 0.11.3 (none) +- updated changelog for latest release (none) +- 0.11.2 (none) +- ๐Ÿพโ›ธ Checkpoint (none) +- ๐Ÿค‘๐Ÿ‘ Checkpoint (none) +- โ˜•๏ธ๐Ÿ“ฐ Checkpoint (none) +- ๐Ÿ’ถ๐Ÿซ Checkpoint (none) +- ๐Ÿฃ๐Ÿ—บ Checkpoint (none) +- ๐Ÿ ๐Ÿ—ป Checkpoint (none) +- ๐Ÿ—พ๐Ÿญ Checkpoint (none) +- ๐Ÿฟ๐ŸŒง Checkpoint (none) +- ๐Ÿ•Œ๐Ÿ… Checkpoint (none) +- fix conflict ([@modernserf](https://github.com/modernserf)) +- Merge branch 'master' of github.com:FogCreek/shared-components ([@modernserf](https://github.com/modernserf)) +- 0.2.0 ([@modernserf](https://github.com/modernserf)) +- shell scripts (none) +- ๐Ÿ‘๐ŸŽŒ Checkpoint (none) +- โ›ท๐Ÿ” Checkpoint (none) +- ๐Ÿ“ˆ๐Ÿ›ฉ Checkpoint (none) +- ๐Ÿ”๐Ÿ˜‡ Checkpoint (none) +- ๐Ÿ‘ฐ๐Ÿ‘ท Checkpoint (none) +- ๐Ÿฏ๐Ÿšˆ Checkpoint (none) +- ๐ŸŒ‡๐Ÿšฟ Checkpoint (none) +- ๐Ÿช๐Ÿฎ Checkpoint (none) +- ๐ŸŽ™๐Ÿ•น Checkpoint (none) +- โ›ฉ๐Ÿ—ƒ Checkpoint (none) +- ๐Ÿ’ธ๐Ÿ’จ Checkpoint (none) +- ๐Ÿซ๐Ÿ’… Checkpoint (none) +- ๐Ÿ€๐ŸŒถ Checkpoint (none) +- ๐Ÿธ๐Ÿ Checkpoint (none) +- ๐Ÿ’–๐Ÿถ Checkpoint (none) +- ๐Ÿจ๐Ÿ‘ผ Checkpoint (none) +- ๐Ÿ๐Ÿš“ Checkpoint (none) +- ๐Ÿ‘๐Ÿ›Ž Checkpoint (none) +- ๐Ÿ˜ผ๐Ÿ“น Checkpoint (none) +- ๐Ÿ“ฎ๐Ÿจ Checkpoint (none) +- ๐ŸŽพ๐ŸŽ… Checkpoint (none) +- ๐Ÿ๐Ÿ‘Œ Checkpoint (none) +- ๐Ÿ“ซ๐Ÿ˜˜ Checkpoint (none) +- ๐Ÿ๐ŸŒœ Checkpoint (none) +- ๐ŸŒต๐Ÿฉ Checkpoint (none) +- ๐Ÿ“น๐Ÿ’ฟ Checkpoint (none) +- ๐Ÿ‘ผ๐Ÿ Checkpoint (none) +- ๐Ÿฌ๐Ÿ’ผ Checkpoint (none) +- ๐Ÿ™Ž๐Ÿ• Checkpoint (none) +- ๐Ÿ›๐Ÿ’‘ Checkpoint (none) +- โ›ฐ๐Ÿ˜˜ Checkpoint (none) +- ๐Ÿ’“โ˜‚๏ธ Checkpoint (none) +- ๐Ÿ™๐Ÿ’ถ Checkpoint (none) +- ๐Ÿ‘˜๐ŸŒŒ Checkpoint (none) +- โœจ๐Ÿ‘‚ Checkpoint (none) +- ๐Ÿฅ๐ŸŒฟ Checkpoint (none) +- ๐ŸŒด๐ŸŽฃ Checkpoint (none) +- ๐Ÿ๐ŸŒ˜ Checkpoint (none) +- ๐ŸŽŒ๐Ÿฆ„ Checkpoint (none) +- ๐Ÿ’ซ๐Ÿ˜บ Checkpoint (none) +- ๐Ÿšœ๐Ÿ˜€ Checkpoint (none) +- ๐ŸŒฅ๐Ÿ› Checkpoint (none) +- ๐Ÿ„๐Ÿšˆ Checkpoint (none) +- ๐Ÿ™†๐Ÿƒ Checkpoint (none) +- ๐Ÿฑ๐Ÿ“’ Checkpoint (none) +- ๐Ÿช๐Ÿ’ฟ Checkpoint (none) +- ๐Ÿšˆ๐Ÿ’บ Checkpoint (none) +- ๐Ÿ––๐Ÿ”‹ Checkpoint (none) +- ๐Ÿ“‡๐Ÿ‹ Checkpoint (none) +- ๐Ÿ’‹๐Ÿ Checkpoint (none) +- ๐Ÿฒโšก๏ธ Checkpoint (none) +- ๐Ÿ‘ฏ๐Ÿ‘ณ Checkpoint (none) +- ๐ŸŒ๐Ÿ Checkpoint (none) +- ๐Ÿ‘ฃ๐Ÿช Checkpoint (none) +- โ˜บ๏ธ๐Ÿ˜Ž Checkpoint (none) +- ๐ŸŒˆโœˆ๏ธ Checkpoint (none) +- ๐Ÿพ๐Ÿƒ Checkpoint (none) +- ๐ŸŽฒ๐ŸŽบ Checkpoint (none) +- ๐Ÿจ๐Ÿ‘ Checkpoint (none) +- ๐ŸŒผโค๏ธ Checkpoint (none) +- ๐Ÿš”๐Ÿถ Checkpoint (none) +- ๐Ÿก๐ŸŒ Checkpoint (none) +- ๐ŸŽ…๐Ÿ’• Checkpoint (none) +- ๐Ÿ‘ท๐Ÿš• Checkpoint (none) +- โ›‘๐ŸŽฑ Checkpoint (none) +- ๐Ÿ—ผ๐Ÿ‘ฉ Checkpoint (none) +- ๐Ÿ”ฎ๐Ÿฟ Checkpoint (none) +- โœˆ๏ธ๐Ÿ’ท Checkpoint (none) +- โ›ฉ๐Ÿ˜บ Checkpoint (none) +- ๐ŸŽŽ๐ŸŒผ Checkpoint (none) +- ๐Ÿ’ท๐Ÿ‘„ Checkpoint (none) +- ๐ŸŒž๐ŸŒ“ Checkpoint (none) +- ๐Ÿ•Œ๐Ÿš‡ Checkpoint (none) +- ๐Ÿš•๐Ÿ“Œ Checkpoint (none) +- ๐ŸŽ๐Ÿ’ซ Checkpoint (none) +- ๐ŸŒ๐ŸŽ‡ Checkpoint (none) +- ๐ŸŒ’๐Ÿƒ Checkpoint (none) +- ๐Ÿ‘Œ๐Ÿฉ Checkpoint (none) +- ๐Ÿ˜š๐Ÿ Checkpoint (none) +- ๐ŸŽ€๐Ÿ Checkpoint (none) +- ๐ŸŒฑ๐ŸŒƒ Checkpoint (none) +- ๐Ÿ’Ž๐Ÿฐ Checkpoint (none) +- ๐Ÿ˜‹๐Ÿ—พ Checkpoint (none) +- ๐Ÿฆ‚๐Ÿ Checkpoint (none) +- ๐Ÿฃ๐Ÿ’„ Checkpoint (none) +- ๐Ÿฑ๐Ÿ’พ Checkpoint (none) +- ๐Ÿš„๐Ÿ–ผ Checkpoint (none) +- ๐Ÿฒ๐Ÿก Checkpoint (none) +- โœ‚๏ธ๐Ÿ‘š Checkpoint (none) +- ๐Ÿฃ๐ŸŒ“ Checkpoint (none) +- ๐Ÿ•ด๐Ÿ‘จ Checkpoint (none) +- ๐Ÿšถ๐ŸŒ– Checkpoint (none) +- ๐Ÿ”‹๐Ÿ›ฌ Checkpoint (none) +- ๐Ÿ‘ข๐ŸŽ Checkpoint (none) +- ๐Ÿฅ๐Ÿ” Checkpoint (none) +- ๐ŸŒ‰๐Ÿฆ Checkpoint (none) +- ๐ŸŒช๐Ÿ‘ฏ Checkpoint (none) +- ๐Ÿš“๐Ÿšฃ Checkpoint (none) +- ๐Ÿ‘ฒ๐Ÿ•ต Checkpoint (none) +- ๐Ÿšฅ๐Ÿž Checkpoint (none) +- ๐Ÿ”๐Ÿ“ท Checkpoint (none) +- ๐ŸŠ๐Ÿ“น Checkpoint (none) +- โ›ฑ๐Ÿ Checkpoint (none) +- ๐Ÿ˜œ๐Ÿš  Checkpoint (none) +- ๐ŸŽช๐Ÿ‘ Checkpoint (none) +- ๐Ÿ๐Ÿš› Checkpoint (none) +- ๐Ÿ™๐Ÿด Checkpoint (none) +- ๐Ÿค๐ŸŽ Checkpoint (none) +- ๐Ÿšœ๐Ÿšด Checkpoint (none) +- ๐Ÿ’ณ๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ Checkpoint (none) +- โœ‹๐Ÿš˜ Checkpoint (none) +- ๐ŸŒฎ๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ Checkpoint (none) +- ๐Ÿ’๐Ÿ’“ Checkpoint (none) +- ๐Ÿค–๐Ÿ‘ซ Checkpoint (none) +- ๐ŸŒ•โฑ Checkpoint (none) +- โฒ๐Ÿ” Checkpoint (none) +- ๐Ÿ‘ง๐Ÿ‡ Checkpoint (none) +- ๐ŸŒฅ๐Ÿฅ Checkpoint (none) +- ๐Ÿ™ˆ๐Ÿ‡ Checkpoint (none) +- ๐Ÿคโญ๏ธ Checkpoint (none) +- ๐Ÿค˜๐Ÿ’… Checkpoint (none) +- ๐Ÿšช๐ŸŒ“ Checkpoint (none) +- ๐Ÿ™๐Ÿ‚ Checkpoint (none) +- ๐Ÿ’–๐ŸŒ– Checkpoint (none) +- ๐ŸšŒ๐ŸŽƒ Checkpoint (none) +- ๐Ÿ‘ญ๐Ÿ’˜ Checkpoint (none) +- ๐Ÿฎ๐Ÿฉ Checkpoint (none) +- ๐ŸŒŽโฑ Checkpoint (none) +- โœŠ๐Ÿ›ฌ Checkpoint (none) +- ๐Ÿš๐Ÿค‘ Checkpoint (none) +- ๐Ÿ’๐Ÿ›Ž Checkpoint (none) +- ๐Ÿจ๐ŸŒ– Checkpoint (none) +- ๐Ÿ‘—โ˜Ž๏ธ Checkpoint (none) +- ๐Ÿฌ๐Ÿ‘ Checkpoint (none) +- ๐Ÿ‹๐Ÿ“– Checkpoint (none) +- ๐Ÿค‘โฒ Checkpoint (none) +- ๐Ÿฟ๐Ÿ’‡ Checkpoint (none) +- ๐Ÿšฒ๐Ÿ˜… Checkpoint (none) +- โ›ท๐Ÿฆ„ Checkpoint (none) +- ๐Ÿฎโ˜„๏ธ Checkpoint (none) +- ๐Ÿ’ต๐Ÿ›ค Checkpoint (none) +- ๐Ÿ”‘๐Ÿ›ฅ Checkpoint (none) +- ๐Ÿ‘”โ›ˆ Checkpoint (none) +- ๐Ÿฅ๐Ÿ“บ Checkpoint (none) +- ๐Ÿ ๐Ÿ’‘ Checkpoint (none) +- ๐ŸŽป๐Ÿ˜‹ Checkpoint (none) +- ๐Ÿ›‹๐ŸŽธ Checkpoint (none) +- ๐Ÿ„๐Ÿˆ Checkpoint (none) +- ๐Ÿ‘พ๐Ÿต Checkpoint (none) +- ๐Ÿ’พ๐Ÿ’ถ Checkpoint (none) +- ๐Ÿ™๐Ÿค Checkpoint (none) +- ๐Ÿ—๐ŸŽช Checkpoint (none) +- ๐ŸŒ‚๐Ÿ„ Checkpoint (none) +- ๐Ÿ‹๐ŸšŠ Checkpoint (none) +- ๐Ÿ’—๐Ÿ” Checkpoint (none) +- ๐ŸŒ–๐ŸŒ Checkpoint (none) +- โ›ฒ๏ธ๐Ÿƒ Checkpoint (none) +- ๐Ÿ›Žโ˜”๏ธ Checkpoint (none) +- ๐ŸŠโ„๏ธ Checkpoint (none) +- ๐Ÿ”๐Ÿ•ต Checkpoint (none) +- ๐Ÿ˜‚โ›ฐ Checkpoint (none) +- ๐Ÿ‘€๐Ÿช Checkpoint (none) +- ๐Ÿ’๐ŸŽƒ Checkpoint (none) +- ๐Ÿ’๐Ÿ‘ญ Checkpoint (none) +- ๐Ÿšž๐Ÿ˜ผ Checkpoint (none) +- ๐Ÿค‘๐Ÿญ Checkpoint (none) +- ๐Ÿ’ผ๐ŸŽ’ Checkpoint (none) +- ๐Ÿง€โฒ Checkpoint (none) +- ๐Ÿšฟ๐ŸŽ‘ Checkpoint (none) +- ๐Ÿ๐Ÿ™† Checkpoint (none) +- ๐Ÿ’บโšก๏ธ Checkpoint (none) +- ๐Ÿ˜…๐Ÿƒ Checkpoint (none) +- ๐Ÿท๐Ÿ“™ Checkpoint (none) +- ๐Ÿ˜š๐ŸŒฅ Checkpoint (none) +- ๐Ÿ™Ž๐ŸŽ Checkpoint (none) +- โ›ฑ๐Ÿšž Checkpoint (none) +- ๐Ÿšž๐Ÿš Checkpoint (none) +- โ˜Ž๏ธ๐Ÿ‡ Checkpoint (none) +- ๐ŸŒŒ๐Ÿšฒ Checkpoint (none) +- โ„๏ธ๐Ÿ” Checkpoint (none) +- ๐Ÿˆ๐Ÿ“ผ Checkpoint (none) +- ๐ŸŒธ๐Ÿ€ Checkpoint (none) +- ๐Ÿ“บ๐ŸŒจ Checkpoint (none) +- ๐Ÿต๐Ÿ“™ Checkpoint (none) +- ๐ŸŽฟ๐ŸŒŒ Checkpoint (none) +- ๐ŸŒช๐Ÿšต Checkpoint (none) +- ๐Ÿ˜ฝ๐Ÿ‡ Checkpoint (none) +- ๐Ÿก๐Ÿ’‘ Checkpoint (none) +- ๐Ÿ‘š๐Ÿ’ฝ Checkpoint (none) +- ๐ŸŒฎ๐ŸŒœ Checkpoint (none) +- ๐ŸŒบ๐ŸŒน Checkpoint (none) +- ๐Ÿšฆ๐Ÿšฒ Checkpoint (none) +- ๐Ÿ’จ๐Ÿฟ Checkpoint (none) +- ๐ŸŒŠ๐Ÿ“ฏ Checkpoint (none) +- ๐Ÿ“๐Ÿˆ Checkpoint (none) +- ๐ŸŒ„๐Ÿšฃ Checkpoint (none) +- ๐Ÿ’„๐Ÿž Checkpoint (none) +- ๐Ÿš„๐Ÿข Checkpoint (none) +- ๐Ÿ‘˜๐Ÿš‚ Checkpoint (none) +- ๐Ÿ’˜๐Ÿšœ Checkpoint (none) +- โณ๐Ÿ’— Checkpoint (none) +- ๐ŸŽฒ๐Ÿ—ผ Checkpoint (none) +- ๐ŸŸ๐ŸŽ™ Checkpoint (none) +- ๐Ÿ‰๐Ÿ‘” Checkpoint (none) +- ๐Ÿž๐Ÿฎ Checkpoint (none) +- ๐Ÿค˜๐Ÿ–ผ Checkpoint (none) +- ๐Ÿ‚๐Ÿ’พ Checkpoint (none) +- ๐Ÿ™†๐Ÿ’‚ Checkpoint (none) +- ๐Ÿ„โ›ฑ Checkpoint (none) +- ๐Ÿ’•๐Ÿ‘ฝ Checkpoint (none) +- ๐ŸŽฒ๐Ÿ—ฝ Checkpoint (none) +- ๐ŸŒป๐Ÿ‘ Checkpoint (none) +- ๐Ÿ”จ๐Ÿš Checkpoint (none) +- ๐Ÿฆ€โ˜บ๏ธ Checkpoint (none) +- ๐Ÿšœ๐Ÿ‘€ Checkpoint (none) +- ๐Ÿž๐Ÿ’† Checkpoint (none) +- โฒ๐Ÿต Checkpoint (none) +- ๐ŸŒฅ๐ŸŸ Checkpoint (none) +- โœŠ๐Ÿž Checkpoint (none) +- ๐ŸŒˆ๐Ÿ˜… Checkpoint (none) +- ๐Ÿ’ธ๐Ÿ“‰ Checkpoint (none) +- ๐Ÿš›๐Ÿ’† Checkpoint (none) +- ๐Ÿ„๐Ÿน Checkpoint (none) +- ๐Ÿ‡๐Ÿ€ Checkpoint (none) +- ๐Ÿ›๐Ÿš‡ Checkpoint (none) +- ๐Ÿ•‹๐Ÿ Checkpoint (none) +- ๐Ÿž๐Ÿ– Checkpoint (none) +- ๐Ÿ“’๐ŸŽบ Checkpoint (none) +- ๐Ÿ›๐Ÿ‘ฌ Checkpoint (none) +- ๐ŸŽ๐Ÿ“ Checkpoint (none) +- ๐Ÿข๐Ÿพ Checkpoint (none) +- ๐ŸŽ…๐Ÿ‘ž Checkpoint (none) +- ๐Ÿข๐Ÿ” Checkpoint (none) +- ๐Ÿค๐Ÿš” Checkpoint (none) +- ๐Ÿ’ˆ๐Ÿฒ Checkpoint (none) +- ๐Ÿ•๐Ÿˆ Checkpoint (none) +- ๐Ÿš”๐Ÿฆ Checkpoint (none) +- ๐ŸšŸ๐Ÿšช Checkpoint (none) +- ๐Ÿ™๐Ÿ’ท Checkpoint (none) +- ๐Ÿ™‹๐ŸŽณ Checkpoint (none) +- ๐Ÿ’ท๐Ÿฎ Checkpoint (none) +- ๐Ÿ‘—๐ŸŽ“ Checkpoint (none) +- ๐ŸŒ”๐Ÿ˜บ Checkpoint (none) +- ๐Ÿ“’๐Ÿšจ Checkpoint (none) +- ๐Ÿšด๐Ÿฏ Checkpoint (none) +- ๐ŸŽฌ๐Ÿ Checkpoint (none) +- ๐Ÿ’กโ›ฑ Checkpoint (none) +- ๐Ÿšโšฝ๏ธ Checkpoint (none) +- ๐ŸŒฆ๐Ÿ Checkpoint (none) +- ๐Ÿ‘ญ๐Ÿ‘‚ Checkpoint (none) +- ๐Ÿœ๐Ÿ’ฉ Checkpoint (none) +- ๐Ÿš๐Ÿ”” Checkpoint (none) +- ๐Ÿ‘กโ›ˆ Checkpoint (none) +- ๐Ÿ’…๐Ÿ‘ต Checkpoint (none) +- ๐Ÿ“•๐ŸŒ Checkpoint (none) +- ๐Ÿ•๐ŸŒŸ Checkpoint (none) +- ๐Ÿฅ๐Ÿ˜Ž Checkpoint (none) +- ๐Ÿข๐Ÿ•Œ Checkpoint (none) +- ๐Ÿ’ซ๐Ÿ Checkpoint (none) +- ๐Ÿ๐Ÿ‘พ Checkpoint (none) +- ๐Ÿ’ถ๐Ÿ™ˆ Checkpoint (none) +- ๐Ÿšฉ๐Ÿ’ง Checkpoint (none) +- โœŠ๐Ÿš™ Checkpoint (none) +- ๐Ÿ“‰๐ŸŽŽ Checkpoint (none) +- ๐Ÿ“ฐ๐ŸŒ— Checkpoint (none) +- Initial Commit (none) + +#### ๐Ÿ”ฉ Dependency Updates + +- Bump lodash from 4.17.15 to 4.17.19 [#119](https://github.com/glitchdotcom/shared-components/pull/119) ([@dependabot[bot]](https://github.com/dependabot[bot])) + +#### Authors: 35 + +- [@dependabot[bot]](https://github.com/dependabot[bot]) +- [@GregWeil](https://github.com/GregWeil) +- Allyson ([@whimsicallyson](https://github.com/whimsicallyson)) +- allyson (allyson@glitch.com) +- anjali patel ([@anjapatel](https://github.com/anjapatel)) +- Cassey Lottman ([@clottman](https://github.com/clottman)) +- Edwin ([@ehmorris](https://github.com/ehmorris)) +- Glitch (ajar-math) (none) +- Glitch (atlantic-spot) (none) +- Glitch (axiomatic-parade) (none) +- Glitch (blossom-bougon) (none) +- Glitch (carnelian-antimony) (none) +- Glitch (difficult-amethyst) (none) +- Glitch (fallacious-garment) (none) +- Glitch (gorgeous-persimmon) (none) +- Glitch (hello-express) (none) +- Glitch (hello-node) (none) +- Glitch (hurricane-cyclone) (none) +- Glitch (malachite-brass) (none) +- Glitch (mulberry-tuck) (none) +- Glitch (obtainable-excessive-salary) (none) +- Glitch (power-passenger) (none) +- Glitch (shared-components-greg) (none) +- Glitch (shared-components) (none) +- Glitch (soapy-azimuth) (none) +- Glitch (spiny-arrow-eel) (none) +- Glitch (whip-parallelogram) (none) +- Glitch (wiry-walker) (none) +- Justin Falcone ([@modernserf](https://github.com/modernserf)) +- Olivia Computer ([@oliviacpu](https://github.com/oliviacpu)) +- Osmose ([@Osmose](https://github.com/Osmose)) +- Sarah Zinger ([@sarahzinger](https://github.com/sarahzinger)) +- Sheridan Kates ([@sheridanvk](https://github.com/sheridanvk)) +- Tara Vancil ([@taravancil](https://github.com/taravancil)) +- Tiffany Tseng ([@ttseng](https://github.com/ttseng)) + +--- + # Changelog All notable changes to this project will be documented in this file. diff --git a/package.json b/package.json index ad9d06d..fb454fc 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "test": "npm run lint", "prepublishOnly": "npm test && npm run rollup", "postversion": "npm run changelog", - "release": "auto shipit --base-branch=main" + "release": "auto shipit --base-branch=master" }, "dependencies": { "dotenv": "^8.2.0", From 1c0bddca6c12835a61bf084b1dc9a7ac4ff732ba Mon Sep 17 00:00:00 2001 From: Keith Date: Tue, 10 Nov 2020 11:26:06 -0800 Subject: [PATCH 3/3] bump auto version --- .circleci/config.yml | 21 ------------- package-lock.json | 75 ++++++++++++++++++++++---------------------- package.json | 4 +-- 3 files changed, 40 insertions(+), 60 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 92e9a8a..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,21 +0,0 @@ -version: 2.1 -jobs: - lint_and_build: - docker: - - image: circleci/node:12 - steps: - - checkout - - run: - name: npm-install - command: npm ci --production=false - - run: - name: eslint - command: npm run lint - - run: - name: build - command: npm run rollup -workflows: - version: 2.1 - regular-workflow: - jobs: - - lint_and_build \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 3534f55..51e2c2c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,18 +5,18 @@ "requires": true, "dependencies": { "@auto-it/bot-list": { - "version": "9.61.0", - "resolved": "https://registry.npmjs.org/@auto-it/bot-list/-/bot-list-9.61.0.tgz", - "integrity": "sha512-/W7qeHFGO4M9vbiBWh5v80IwQsWN5j0mPkQL5bjY18QXwy1D/GsQ/SuGrZ12NYDMSwlMsa5NelVEicSkwYFAqQ==", + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@auto-it/bot-list/-/bot-list-10.3.0.tgz", + "integrity": "sha512-r6qwKi1paPLiKsAXtm0XiEQi0bmisspmWd5siNZNx6eMr41SOZ363I5L6CjaE4VKfrFKV3jkgHlel/URd+npcg==", "dev": true }, "@auto-it/core": { - "version": "9.61.0", - "resolved": "https://registry.npmjs.org/@auto-it/core/-/core-9.61.0.tgz", - "integrity": "sha512-fuH7qfnraiaPRPqm3V8b+7s9xHFt3/ojbQWKFeYzRA+zEbk6Ie2MqhLXRDBON3hTDjSnjw5cwY14R2RkL98hcQ==", + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@auto-it/core/-/core-10.3.0.tgz", + "integrity": "sha512-W3jOleQfVCo0+9+ECHEd+FeOqrUwddYegYSbguIjdygfXaxCKAbJYr+RUggHEH+rIDr8y4Ca+0tnxD5Hrwxjuw==", "dev": true, "requires": { - "@auto-it/bot-list": "9.61.0", + "@auto-it/bot-list": "10.3.0", "@octokit/plugin-enterprise-compatibility": "^1.2.2", "@octokit/plugin-retry": "^3.0.1", "@octokit/plugin-throttling": "^3.2.0", @@ -48,7 +48,7 @@ "tapable": "^2.0.0-beta.2", "terminal-link": "^2.1.1", "tinycolor2": "^1.4.1", - "tslib": "2.0.1", + "tslib": "2.0.3", "type-fest": "^0.16.0", "typescript-memoize": "^1.0.0-alpha.3", "url-join": "^4.0.0" @@ -110,9 +110,9 @@ } }, "tslib": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.1.tgz", - "integrity": "sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", + "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==", "dev": true }, "type-fest": { @@ -124,12 +124,12 @@ } }, "@auto-it/npm": { - "version": "9.61.0", - "resolved": "https://registry.npmjs.org/@auto-it/npm/-/npm-9.61.0.tgz", - "integrity": "sha512-tOMz5BOWYK5HcE8RC0KHc771T3gli52El6hQEogzN+a5sJPGz9j5veXeEmhfL5VXJay+ktAi41aC9cmaNGvt9w==", + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@auto-it/npm/-/npm-10.3.0.tgz", + "integrity": "sha512-tX2YZHfmTnEtP3bxbchsmYcxUhugP7zHGMvICHH6181s1jiGP9blZpYOw0b1cdF4SHQt7wKJyboUCvCkJQU0wQ==", "dev": true, "requires": { - "@auto-it/core": "9.61.0", + "@auto-it/core": "10.3.0", "await-to-js": "^2.1.1", "env-ci": "^5.0.1", "fp-ts": "^2.5.3", @@ -139,7 +139,7 @@ "parse-github-url": "1.0.2", "registry-url": "^5.1.0", "semver": "^7.0.0", - "tslib": "2.0.1", + "tslib": "2.0.3", "typescript-memoize": "^1.0.0-alpha.3", "url-join": "^4.0.0", "user-home": "^2.0.0" @@ -152,30 +152,31 @@ "dev": true }, "tslib": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.1.tgz", - "integrity": "sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", + "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==", "dev": true } } }, "@auto-it/released": { - "version": "9.61.0", - "resolved": "https://registry.npmjs.org/@auto-it/released/-/released-9.61.0.tgz", - "integrity": "sha512-CLJT0a05ze7amKgwys+vBI3QA4D9d6mpisi0ibsICXdq1sK2iAiiB19f/ZxCSqIZS1FcivxYXefI4G8itnUH7A==", + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@auto-it/released/-/released-10.3.0.tgz", + "integrity": "sha512-6YS8hbbRJ+3WGTh9pwMiEnAdzkveXwgQpxgYlKhtgaYMpLmXT1C8K9YXxFqG9hnAknJoAhN/TRIp+CGGEsczFQ==", "dev": true, "requires": { - "@auto-it/core": "9.61.0", + "@auto-it/bot-list": "10.3.0", + "@auto-it/core": "10.3.0", "deepmerge": "^4.0.0", "fp-ts": "^2.5.3", "io-ts": "^2.1.2", - "tslib": "2.0.1" + "tslib": "2.0.3" }, "dependencies": { "tslib": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.1.tgz", - "integrity": "sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", + "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==", "dev": true } } @@ -776,14 +777,14 @@ "dev": true }, "auto": { - "version": "9.61.0", - "resolved": "https://registry.npmjs.org/auto/-/auto-9.61.0.tgz", - "integrity": "sha512-k9MP2xEjgTO6dtDvJsgOoZf4V+ceBnPk7MMyHr98kJru4IpZ+/GSXeiYrrqQKwmaNUx6FuhW/qTFfk3SHIQ9bA==", + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/auto/-/auto-10.3.0.tgz", + "integrity": "sha512-/IbTdro96syV8cfzQMbdeXvzTK+uGaEYJxe5Ji/sgzBQxAeWx1fS9MHczVV5HrPmoR4Jr6RnIL0MwFMtODnvWA==", "dev": true, "requires": { - "@auto-it/core": "9.61.0", - "@auto-it/npm": "9.61.0", - "@auto-it/released": "9.61.0", + "@auto-it/core": "10.3.0", + "@auto-it/npm": "10.3.0", + "@auto-it/released": "10.3.0", "await-to-js": "^2.1.1", "chalk": "^4.0.0", "command-line-application": "^0.10.1", @@ -791,7 +792,7 @@ "module-alias": "^2.2.2", "signale": "^1.4.0", "terminal-link": "^2.1.1", - "tslib": "2.0.1" + "tslib": "2.0.3" }, "dependencies": { "ansi-styles": { @@ -844,9 +845,9 @@ } }, "tslib": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.1.tgz", - "integrity": "sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", + "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==", "dev": true } } diff --git a/package.json b/package.json index fb454fc..d763cd5 100644 --- a/package.json +++ b/package.json @@ -36,17 +36,17 @@ "styled-components": "^4.3.0" }, "devDependencies": { - "auto": "^9.53.1", "@babel/core": "^7.6.0", "@babel/plugin-transform-react-jsx": "^7.2.0", + "auto": "^10.3.0", "babel-plugin-styled-components": "1.10.5", - "express": "4.16.4", "eslint": "^6.8.0", "eslint-plugin-import": "^2.20.0", "eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-react": "^7.18.0", "eslint-plugin-react-hooks": "^1.7.0", "eslint-scope": "^5.0.0", + "express": "4.16.4", "prettier": "^1.18.2", "react": "^16.8.0", "rollup": "^1.16.7",