Skip to content

Commit

Permalink
Merge branch 'develop' into chore/stake-pool-components-with-graphql
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikGuzei committed Sep 21, 2020
2 parents f0aaa94 + 622701d commit 2f06b86
Show file tree
Hide file tree
Showing 1,988 changed files with 363 additions and 319 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,32 @@
name: CI

on:
push:
branches: [ develop, master ]
pull_request:
branches: [ develop, master ]

jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Lint and test
env:
CI: true
run: |
yarn --offline --frozen-lockfile --non-interactive
yarn lint
yarn static:build
yarn test
yarn static:serve -l 4000 &
yarn test:e2e
34 changes: 0 additions & 34 deletions .github/workflows/tests.yml

This file was deleted.

2 changes: 2 additions & 0 deletions .yarnrc
@@ -0,0 +1,2 @@
yarn-offline-mirror "./packages-cache"
yarn-offline-mirror-pruning true
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,14 @@
Changelog
=========

## 1.1.0
### Features
- [Split slots & blocks into separate columns](https://github.com/input-output-hk/cardano-explorer-app/pull/338)
- [Add package.json version to footer](https://github.com/input-output-hk/cardano-explorer-app/pull/348)
### Chores
- [Dynamically calc Byron epochs length](https://github.com/input-output-hk/cardano-explorer-app/pull/334)
- [Update to latest react-polymorph](https://github.com/input-output-hk/cardano-explorer-app/pull/351)
- [yarn offline cache](https://github.com/input-output-hk/cardano-explorer-app/pull/356)
## 1.0.2
### Fixes
- [#334](https://github.com/input-output-hk/cardano-explorer-app/issues/334)
Expand Down
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -18,8 +18,9 @@ See [environment](source/environment.ts) for defaults.
- `DEBUG`

## Build
This project uses an offline package cache to enable reproducible builds.
```console
yarn && yarn static:build
yarn --offline && yarn static:build
```
## Deploy
The static bundle can be deployed using a standard web server. A simple [Node.js program](deploy/index.js)
Expand Down
5 changes: 1 addition & 4 deletions default.nix
@@ -1,4 +1 @@
{
}:

let pkgs = import ./nix/pkgs.nix { }; in pkgs.packages
(import ./nix/pkgs.nix {}).packages
70 changes: 70 additions & 0 deletions nix/cardano-explorer-app.nix
@@ -0,0 +1,70 @@
{ stdenv
, nix-inclusive
, nodejs
, nodePackages
, runtimeShell
, sources
, yarn
}:

let
packageJSON = builtins.fromJSON (builtins.readFile ../package.json);

src = stdenv.mkDerivation {
pname = "${packageJSON.name}-src";
version = packageJSON.version;
buildInputs = [ yarn nodejs ];
src = nix-inclusive ./.. [
../yarn.lock
../.yarnrc
../package.json
../packages-cache
../tsconfig.json
../source
../cypress
../.storybook
../codegen.yml
../.babelrc
../stories
../cypress.json
../jest.config.js
../next.config.js
../postcss.config.js
../tslint.json
../wallaby.conf.js
];
buildCommand = ''
export HOME=$NIX_BUILD_TOP
mkdir -p $out
cp -r $src/. $out/
chmod -R u+w $out
cd $out
export CYPRESS_INSTALL_BINARY=0
yarn --offline --frozen-lockfile --non-interactive
'';
};

in stdenv.mkDerivation {
pname = packageJSON.name;
version = packageJSON.version;
inherit src;
buildInputs = [ nodejs yarn ];
buildCommand = ''
mkdir -p $out
cp -r $src/. $out/
chmod -R u+w $out
patchShebangs $out
cd $out
yarn build
find . -name node_modules -type d -print0 | xargs -0 rm -rf
yarn --production --offline --frozen-lockfile --non-interactive
mkdir -p $out/bin
cat <<EOF > $out/bin/${packageJSON.name}
#!${runtimeShell}
exec ${nodejs}/bin/node $out/packages/server/dist/index.js
EOF
chmod +x $out/bin/${packageJSON.name}
'';
} // { inherit src; }
45 changes: 11 additions & 34 deletions nix/packages.nix
@@ -1,44 +1,21 @@
{ lib, pkgs }:

let
src = lib.cleanSourceWith {
filter = lib.cleanSourceFilter;
src = lib.cleanSourceWith {
filter = name: type: let
baseName = baseNameOf (toString name);
sansPrefix = lib.removePrefix (toString ../.) name;
excludeList =
lib.hasPrefix "/node_modules" sansPrefix ||
lib.hasPrefix "/build" sansPrefix;
includeList =
(type == "directory") ||
(lib.hasSuffix ".yml" name) ||
#(lib.hasSuffix ".js" name) ||
(lib.hasSuffix ".ts" name) ||
#(lib.hasSuffix ".tsx" name) ||
(lib.hasSuffix ".json" name) ||
#(lib.hasSuffix ".graphql" name) ||
#(lib.hasPrefix "/source/public/assets" sansPrefix) ||
(lib.hasPrefix "/source" sansPrefix) ||
baseName == ".babelrc" ||
baseName == "package.json" ||
baseName == "next.config.js" ||
baseName == "yarn.lock" ||
(lib.hasPrefix "/deploy" sansPrefix);
in (
(!excludeList) && includeList
);
src = ../.;
};
};
nodePackages = pkgs.callPackage ./node-packages {};
packages = self: {
inherit src;
sources = import ./sources.nix;
allowList = pkgs.runCommand "allowList.json" { buildInputs = [ nodePackages.persistgraphql ]; } ''
persistgraphql ${src} $out
persistgraphql ${self.cardano-explorer-app.src} $out
'';
static = self.callPackage ./static.nix {};
yarn-static = self.callPackage ./yarn2nix.nix {};
nodejs = pkgs.nodejs-12_x;
nix-inclusive = pkgs.callPackage "${self.sources.nix-inclusive}/inclusive.nix" {};
static = self.callPackage ./static.nix {
src = self.cardano-explorer-app;
};
yarn-static = self.callPackage ./yarn2nix.nix {
inherit (pkgs.yarn2nix-moretea) importOfflineCache mkYarnNix;
};
inherit (self.yarn-static.passthru) offlinecache;
cardano-explorer-app = self.callPackage ./cardano-explorer-app.nix {};
};
in pkgs.lib.makeScope pkgs.newScope packages
17 changes: 5 additions & 12 deletions nix/pkgs.nix
@@ -1,16 +1,9 @@
{ sources ? import ./sources.nix
}:
{ sources ? import ./sources.nix }:

let
# TODO: filter src to just the files needed to build
src = ../.;
iohkNix = import sources.iohk-nix {};
overlay = self: super: {
inherit (import sources.niv {}) niv;
packages = self.callPackage ./packages.nix { };
node = super.nodejs-12_x;
inherit (import sources.yarn2nix { pkgs = self; }) yarn2nix mkYarnModules mkYarnPackage importOfflineCache mkYarnNix fixup_yarn_lock;
packages = self.callPackages ./packages.nix { };
};
in
import sources.nixpkgs {
overlays = [ overlay ];
config = {};
}
import iohkNix.nixpkgs { overlays = [ overlay ]; config = {}; }
46 changes: 11 additions & 35 deletions nix/sources.json
Expand Up @@ -5,46 +5,22 @@
"homepage": null,
"owner": "input-output-hk",
"repo": "iohk-nix",
"rev": "76864277730cca14d42db7965bf4a8b42d7d5997",
"sha256": "1jc41r44lh5nwwb7453kcn1hh3dx90qb0qkmnmh1hrwpgq3l5mv5",
"rev": "edfa1fdbe68fe0023b1a9a231bb41e7a757cb829",
"sha256": "09366r2kprvaxx38y9qk05zxqcgkh89x34n6ck1hkvncjg6r9bfc",
"type": "tarball",
"url": "https://github.com/input-output-hk/iohk-nix/archive/76864277730cca14d42db7965bf4a8b42d7d5997.tar.gz",
"url": "https://github.com/input-output-hk/iohk-nix/archive/edfa1fdbe68fe0023b1a9a231bb41e7a757cb829.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"niv": {
"branch": "iohk",
"description": "Easy dependency management for Nix projects",
"homepage": "https://github.com/nmattia/niv",
"owner": "input-output-hk",
"repo": "niv",
"rev": "89da7b2e7ae0779fd351618fc74df1b1da5e6214",
"sha256": "0jn88ahv6mycxdkzihy1v0dz2110q0d42q4ggyj68l2lyba6y0yy",
"type": "tarball",
"url": "https://github.com/input-output-hk/niv/archive/89da7b2e7ae0779fd351618fc74df1b1da5e6214.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"nixpkgs": {
"branch": "nixos-19.09",
"description": "A read-only mirror of NixOS/nixpkgs tracking the released channels. Send issues and PRs to",
"homepage": "https://github.com/NixOS/nixpkgs",
"owner": "NixOS",
"repo": "nixpkgs-channels",
"rev": "d011e4749457af484adf2e90062c83a44ad072a4",
"sha256": "1nvhya0v98agidgxv83sb7xyb559qagx9f6iqknpxhxsv09j2qsp",
"type": "tarball",
"url": "https://github.com/NixOS/nixpkgs-channels/archive/d011e4749457af484adf2e90062c83a44ad072a4.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"yarn2nix": {
"nix-inclusive": {
"branch": "master",
"description": "Generate nix expressions from a yarn.lock file",
"homepage": null,
"owner": "moretea",
"repo": "yarn2nix",
"rev": "9e7279edde2a4e0f5ec04c53f5cd64440a27a1ae",
"sha256": "0zz2lrwn3y3rb8gzaiwxgz02dvy3s552zc70zvfqc0zh5dhydgn7",
"description": "Simple inclusive file selection implementation for Nix",
"homepage": "",
"owner": "input-output-hk",
"repo": "nix-inclusive",
"rev": "11d05e4f1ca04fd250a9734e27970ad73bbd872d",
"sha256": "0j0cfs5vpsnbk0bnz0bhfajgjhchd82cfhjp5qxkb68iqi9mg7z1",
"type": "tarball",
"url": "https://github.com/moretea/yarn2nix/archive/9e7279edde2a4e0f5ec04c53f5cd64440a27a1ae.tar.gz",
"url": "https://github.com/input-output-hk/nix-inclusive/archive/11d05e4f1ca04fd250a9734e27970ad73bbd872d.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
}
}
10 changes: 4 additions & 6 deletions nix/static.nix
@@ -1,4 +1,4 @@
{ stdenv, yarn, nodejs, fixup_yarn_lock, offlinecache
{ stdenv, yarn, nodejs, offlinecache
, cardanoEra ? "byron"
, cardanoNetwork ? "mainnet"
, graphqlApiProtocol ? "https"
Expand All @@ -22,16 +22,14 @@ stdenv.mkDerivation {
GA_TRACKING_ID = gaTrackingId;
buildCommand = ''
export HOME=$PWD/yarn_home
unpackPhase
cd $sourceRoot
${fixup_yarn_lock}/bin/fixup_yarn_lock yarn.lock
yarn config --offline set yarn-offline-mirror ${offlinecache}
export CYPRESS_INSTALL_BINARY=0
yarn config set yarn-offline-mirror ${offlinecache}
yarn install --offline --frozen-lockfile --ignore-engines --ignore-scripts
export PATH="$PATH:node_modules/.bin"
patchShebangs node_modules/
NODE_ENV=production yarn --offline run build
yarn --offline run next export source --outdir $out
yarn run next export source --outdir $out
'';
}
4 changes: 0 additions & 4 deletions nix/yarn2nix.nix
Expand Up @@ -8,9 +8,6 @@ in mkYarnPackage {
packageJSON = ../package.json;
yarnLock = ../yarn.lock;
src = src;
extraBuildInputs = [
#breakpointHook strace bashInteractive
];
yarnPreBuild = ''
mkdir -p $HOME/.node-gyp/${nodejs.version}
echo 9 > $HOME/.node-gyp/${nodejs.version}/installVersion
Expand All @@ -24,7 +21,6 @@ in mkYarnPackage {
yarn --offline run build
yarn run next export source --outdir $out
#ln -s $node_modules $out/node_modules
yarn export
ls -lh deps/cardano-explorer-app/build/static
Expand Down
6 changes: 3 additions & 3 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "cardano-explorer-app",
"version": "1.0.2",
"version": "1.1.0",
"description": "Cardano Explorer App",
"author": "Daedalus Team @ Input Output HK",
"license": "Apache-2.0",
Expand Down Expand Up @@ -73,7 +73,7 @@
"@babel/plugin-transform-react-display-name": "7.8.3",
"@babel/plugin-transform-react-jsx-self": "7.9.0",
"@babel/plugin-transform-react-jsx-source": "7.9.0",
"@cardano-graphql/client-ts": "2.0.0",
"@cardano-graphql/client-ts": "2.1.0",
"@cypress/webpack-preprocessor": "4.1.1",
"@graphql-codegen/cli": "1.2.0",
"@graphql-codegen/typescript": "1.2.0",
Expand Down Expand Up @@ -118,7 +118,7 @@
"css-loader": "3.5.1",
"cucumber": "5.1.0",
"cucumber-pretty": "1.5.0",
"cypress": "4.1.0",
"cypress": "4.12.1",
"dotenv": "8.0.0",
"dotenv-webpack": "1.7.0",
"husky": "3.0.3",
Expand Down
Binary file added packages-cache/@ampproject-toolbox-core-2.5.4.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@babel-code-frame-7.10.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-code-frame-7.5.5.tgz
Binary file not shown.
Binary file added packages-cache/@babel-code-frame-7.8.3.tgz
Binary file not shown.
Binary file added packages-cache/@babel-compat-data-7.10.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-core-7.10.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-core-7.2.0.tgz
Binary file not shown.
Binary file added packages-cache/@babel-core-7.7.7.tgz
Binary file not shown.
Binary file added packages-cache/@babel-core-7.9.0.tgz
Binary file not shown.
Binary file added packages-cache/@babel-generator-7.10.4.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@babel-helper-regex-7.10.4.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@babel-helpers-7.10.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-highlight-7.10.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-parser-7.10.4.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@babel-polyfill-7.10.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-preset-env-7.10.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-preset-env-7.9.0.tgz
Binary file not shown.
Binary file added packages-cache/@babel-preset-env-7.9.6.tgz
Binary file not shown.
Binary file added packages-cache/@babel-preset-flow-7.10.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-preset-modules-0.1.3.tgz
Binary file not shown.
Binary file added packages-cache/@babel-preset-react-7.10.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-preset-react-7.9.1.tgz
Binary file not shown.
Binary file added packages-cache/@babel-preset-react-7.9.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-preset-typescript-7.9.0.tgz
Binary file not shown.
Binary file added packages-cache/@babel-runtime-7.10.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-runtime-7.9.0.tgz
Binary file not shown.
Binary file added packages-cache/@babel-runtime-7.9.6.tgz
Binary file not shown.
Binary file added packages-cache/@babel-runtime-corejs3-7.10.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-template-7.10.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-traverse-7.10.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-types-7.10.4.tgz
Binary file not shown.
Binary file added packages-cache/@babel-types-7.8.3.tgz
Binary file not shown.
Binary file added packages-cache/@babel-types-7.9.6.tgz
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@bcoe-v8-coverage-0.2.3.tgz
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@cnakazawa-watch-1.0.4.tgz
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@cypress-request-2.88.5.tgz
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@cypress-xvfb-1.2.4.tgz
Binary file not shown.
Binary file added packages-cache/@emotion-cache-10.0.29.tgz
Binary file not shown.
Binary file added packages-cache/@emotion-core-10.0.28.tgz
Binary file not shown.
Binary file added packages-cache/@emotion-css-10.0.27.tgz
Binary file not shown.
Binary file added packages-cache/@emotion-hash-0.8.0.tgz
Binary file not shown.
Binary file added packages-cache/@emotion-is-prop-valid-0.8.8.tgz
Binary file not shown.
Binary file added packages-cache/@emotion-memoize-0.7.4.tgz
Binary file not shown.
Binary file added packages-cache/@emotion-serialize-0.11.16.tgz
Binary file not shown.
Binary file added packages-cache/@emotion-sheet-0.9.4.tgz
Binary file not shown.
Binary file added packages-cache/@emotion-styled-10.0.27.tgz
Binary file not shown.
Binary file added packages-cache/@emotion-styled-base-10.0.31.tgz
Binary file not shown.
Binary file added packages-cache/@emotion-stylis-0.8.5.tgz
Binary file not shown.
Binary file added packages-cache/@emotion-unitless-0.7.5.tgz
Binary file not shown.
Binary file added packages-cache/@emotion-utils-0.11.3.tgz
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@graphql-codegen-cli-1.2.0.tgz
Binary file not shown.
Binary file added packages-cache/@graphql-codegen-core-1.2.0.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@graphql-tools-merge-6.0.15.tgz
Binary file not shown.
Binary file added packages-cache/@graphql-tools-schema-6.0.15.tgz
Binary file not shown.
Binary file added packages-cache/@graphql-tools-utils-6.0.15.tgz
Binary file not shown.
Binary file added packages-cache/@icons-material-0.2.4.tgz
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@istanbuljs-schema-0.1.2.tgz
Binary file not shown.
Binary file added packages-cache/@jest-console-26.1.0.tgz
Binary file not shown.
Binary file added packages-cache/@jest-core-26.1.0.tgz
Binary file not shown.
Binary file added packages-cache/@jest-environment-26.1.0.tgz
Binary file not shown.
Binary file added packages-cache/@jest-fake-timers-26.1.0.tgz
Binary file not shown.
Binary file added packages-cache/@jest-globals-26.1.0.tgz
Binary file not shown.
Binary file added packages-cache/@jest-reporters-26.1.0.tgz
Binary file not shown.
Binary file added packages-cache/@jest-source-map-26.1.0.tgz
Binary file not shown.
Binary file added packages-cache/@jest-test-result-26.1.0.tgz
Binary file not shown.
Binary file added packages-cache/@jest-test-sequencer-26.1.0.tgz
Binary file not shown.
Binary file added packages-cache/@jest-transform-26.1.0.tgz
Binary file not shown.
Binary file added packages-cache/@jest-types-25.5.0.tgz
Binary file not shown.
Binary file added packages-cache/@jest-types-26.1.0.tgz
Binary file not shown.
Binary file added packages-cache/@mrmlnc-readdir-enhanced-2.2.1.tgz
Binary file not shown.
Binary file added packages-cache/@next-react-dev-overlay-9.4.4.tgz
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@nodelib-fs.scandir-2.1.3.tgz
Binary file not shown.
Binary file added packages-cache/@nodelib-fs.stat-1.1.3.tgz
Binary file not shown.
Binary file added packages-cache/@nodelib-fs.stat-2.0.3.tgz
Binary file not shown.
Binary file added packages-cache/@nodelib-fs.walk-1.2.4.tgz
Binary file not shown.
Binary file added packages-cache/@prefresh-core-0.7.1.tgz
Binary file not shown.
Binary file added packages-cache/@prefresh-next-0.3.1.tgz
Binary file not shown.
Binary file added packages-cache/@prefresh-utils-0.2.0.tgz
Binary file not shown.
Binary file added packages-cache/@reach-router-1.3.4.tgz
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@sinonjs-commons-1.8.0.tgz
Binary file not shown.
Binary file added packages-cache/@sinonjs-fake-timers-6.0.1.tgz
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@storybook-addon-info-5.1.11.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-addon-knobs-5.2.3.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-addon-links-5.1.11.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-addons-5.1.11.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-addons-5.2.3.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-api-5.1.11.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-api-5.2.3.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@storybook-channels-5.1.11.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-channels-5.2.3.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-client-api-5.1.11.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-client-api-5.2.3.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@storybook-components-5.1.11.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-components-5.2.3.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-core-5.1.11.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-core-events-5.1.11.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-core-events-5.2.3.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-node-logger-5.1.11.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-react-5.1.11.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-router-5.1.11.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-router-5.2.3.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-theming-5.1.11.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-theming-5.2.3.tgz
Binary file not shown.
Binary file added packages-cache/@storybook-ui-5.1.11.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@svgr-babel-preset-4.3.3.tgz
Binary file not shown.
Binary file added packages-cache/@svgr-core-4.3.3.tgz
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@svgr-plugin-jsx-4.3.3.tgz
Binary file not shown.
Binary file added packages-cache/@svgr-plugin-svgo-4.3.1.tgz
Binary file not shown.
Binary file added packages-cache/@svgr-webpack-4.3.3.tgz
Binary file not shown.
Binary file added packages-cache/@types-anymatch-1.3.1.tgz
Binary file not shown.
Binary file added packages-cache/@types-babel-types-7.0.7.tgz
Binary file not shown.
Binary file added packages-cache/@types-babel__core-7.1.9.tgz
Binary file not shown.
Binary file added packages-cache/@types-babel__generator-7.6.1.tgz
Binary file not shown.
Binary file added packages-cache/@types-babel__template-7.0.2.tgz
Binary file not shown.
Binary file added packages-cache/@types-babel__traverse-7.0.12.tgz
Binary file not shown.
Binary file added packages-cache/@types-babylon-6.16.5.tgz
Binary file not shown.
Binary file added packages-cache/@types-chance-1.0.7.tgz
Binary file not shown.
Binary file added packages-cache/@types-chroma-js-1.4.3.tgz
Binary file not shown.
Binary file added packages-cache/@types-classnames-2.2.9.tgz
Binary file not shown.
Binary file added packages-cache/@types-color-name-1.1.1.tgz
Binary file not shown.
Binary file added packages-cache/@types-debug-4.1.4.tgz
Binary file not shown.
Binary file added packages-cache/@types-graceful-fs-4.1.3.tgz
Binary file not shown.
Binary file added packages-cache/@types-graphql-14.2.0.tgz
Binary file not shown.
Binary file added packages-cache/@types-history-4.7.6.tgz
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@types-is-function-1.0.0.tgz
Binary file not shown.
Binary file added packages-cache/@types-is-glob-4.0.1.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@types-istanbul-reports-1.1.2.tgz
Binary file not shown.
Binary file added packages-cache/@types-jest-26.0.3.tgz
Binary file not shown.
Binary file added packages-cache/@types-json-schema-7.0.5.tgz
Binary file not shown.
Binary file added packages-cache/@types-lodash-4.14.119.tgz
Binary file not shown.
Binary file added packages-cache/@types-mkdirp-0.5.2.tgz
Binary file not shown.
Binary file added packages-cache/@types-next-9.0.0.tgz
Binary file not shown.
Binary file added packages-cache/@types-node-10.12.12.tgz
Binary file not shown.
Binary file added packages-cache/@types-node-14.0.14.tgz
Binary file not shown.
Binary file not shown.
Binary file added packages-cache/@types-parse-json-4.0.0.tgz
Binary file not shown.
Binary file added packages-cache/@types-prettier-1.16.4.tgz
Binary file not shown.
Binary file added packages-cache/@types-prettier-2.0.1.tgz
Binary file not shown.
Binary file added packages-cache/@types-prop-types-15.7.3.tgz
Binary file not shown.
Binary file added packages-cache/@types-q-1.5.4.tgz
Binary file not shown.
Binary file added packages-cache/@types-qrcode.react-0.9.0.tgz
Binary file not shown.
Binary file added packages-cache/@types-reach__router-1.3.5.tgz
Binary file not shown.
Binary file added packages-cache/@types-react-16.8.6.tgz
Binary file not shown.

0 comments on commit 2f06b86

Please sign in to comment.