Skip to content

Commit 0fead94

Browse files
authored
Merge pull request #124 from packetloop/Upgrade
Upgrade
2 parents 0fe17a3 + d4b4210 commit 0fead94

File tree

914 files changed

+5105
-4783
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

914 files changed

+5105
-4783
lines changed

.babelrc

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
{
22
"presets": [
3-
"react",
4-
"env"
3+
"@babel/preset-env",
4+
"@babel/preset-react"
55
],
66
"plugins": [
7-
"transform-object-rest-spread",
8-
"transform-class-properties"
7+
"@babel/plugin-proposal-object-rest-spread",
8+
"@babel/plugin-proposal-class-properties"
99
],
1010
"env": {
1111
"production": {
1212
"plugins": [
13-
["transform-react-remove-prop-types", {"removeImport": true}]
13+
[
14+
"transform-react-remove-prop-types",
15+
{
16+
"removeImport": true
17+
}
18+
]
1419
]
1520
}
1621
}

.circleci/config.yml

+7-20
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,21 @@ jobs:
55
build:
66
working_directory: ~/app
77
docker:
8-
- image: circleci/node:8.4.0
9-
- image: selenium/standalone-firefox:3.4.0
8+
- image: circleci/node:10
109

1110
steps:
1211
- checkout
13-
14-
1512
- restore_cache:
1613
key: deps-{{ checksum "yarn.lock" }}
17-
18-
19-
- run: yarn install --pure-lockfile
20-
21-
14+
- run: yarn install --pure-lockfile --offline
15+
- run: yarn deps
2216
- save_cache:
2317
key: deps-{{ checksum "yarn.lock" }}
2418
paths:
19+
- ~/.cache/yarn
2520
- node_modules
26-
27-
2821
- run: yarn lint
29-
30-
3122
- run: yarn test
32-
33-
34-
- run:
35-
name: yarn e2e
36-
command: |
37-
export DOCKER_IP=$(ifconfig | grep "inet addr:" | grep "Bcast:0.0.0.0" | cut -d: -f2 | awk '{ print $1}')
38-
yarn e2e
23+
- run: yarn lib
24+
- run: yarn dist
25+
- run: yarn pub

.eslintrc

-40
This file was deleted.

.eslintrc.js

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
module.exports = {
2+
extends: 'airbnb',
3+
parser: 'babel-eslint',
4+
env: {
5+
browser: true
6+
},
7+
rules: {
8+
'arrow-parens': ['error', 'as-needed'],
9+
'comma-dangle': ['error', 'never'],
10+
'object-curly-spacing': ['error', 'never'],
11+
'no-console': 'off',
12+
'global-require': 'off',
13+
'import/no-dynamic-require': 'off',
14+
'import/prefer-default-export': 'off',
15+
'import/no-extraneous-dependencies': 'off',
16+
'react/no-multi-comp': 'off',
17+
'react/sort-comp': ['error', {
18+
order: [
19+
'static-variables',
20+
'static-methods',
21+
'instance-variables',
22+
'lifecycle',
23+
'everything-else',
24+
'render'
25+
],
26+
}],
27+
'react/jsx-filename-extension': ['error', {extensions: ['.js']}],
28+
'react/jsx-closing-bracket-location': ['error', {
29+
nonEmpty: 'after-props',
30+
selfClosing: 'after-props'
31+
}],
32+
'jsx-a11y/label-has-for': 'off',
33+
'jsx-a11y/label-has-associated-control': 'off',
34+
35+
'max-classes-per-file': 'off',
36+
'react/static-property-placement': 'off',
37+
'react/jsx-props-no-spreading': 'off',
38+
39+
'object-curly-newline': ['error', {
40+
multiline: true,
41+
consistent: true,
42+
minProperties: 0
43+
}],
44+
45+
'react/state-in-constructor': 'off',
46+
'react/jsx-one-expression-per-line': 'off',
47+
'react/no-array-index-key': 'off'
48+
}
49+
};

.packages/@babel-cli-7.7.0.tgz

8.33 KB
Binary file not shown.

.packages/@babel-code-frame-7.5.5.tgz

2.94 KB
Binary file not shown.

.packages/@babel-core-7.7.2.tgz

30 KB
Binary file not shown.

.packages/@babel-generator-7.7.2.tgz

20.7 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2.07 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
2.68 KB
Binary file not shown.
Binary file not shown.
2.82 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4.11 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
2.53 KB
Binary file not shown.
1.51 KB
Binary file not shown.
Binary file not shown.
2.89 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
2.49 KB
Binary file not shown.

.packages/@babel-helpers-7.7.0.tgz

15.6 KB
Binary file not shown.

.packages/@babel-highlight-7.5.0.tgz

2.38 KB
Binary file not shown.

.packages/@babel-parser-7.7.2.tgz

84.2 KB
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.
1.57 KB
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.

.packages/@babel-preset-env-7.7.1.tgz

27.8 KB
Binary file not shown.
1.93 KB
Binary file not shown.

.packages/@babel-register-7.7.0.tgz

3.72 KB
Binary file not shown.

.packages/@babel-runtime-7.7.2.tgz

16.2 KB
Binary file not shown.

.packages/@babel-template-7.7.0.tgz

6.03 KB
Binary file not shown.

.packages/@babel-traverse-7.7.2.tgz

30.3 KB
Binary file not shown.

.packages/@babel-types-7.7.2.tgz

85.2 KB
Binary file not shown.

.packages/@types-events-3.0.0.tgz

1.69 KB
Binary file not shown.

.packages/@types-glob-7.1.1.tgz

2.15 KB
Binary file not shown.

.packages/@types-minimatch-3.0.3.tgz

2.85 KB
Binary file not shown.

.packages/@types-node-12.12.6.tgz

94 KB
Binary file not shown.
62.3 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
2.42 KB
Binary file not shown.
Binary file not shown.
2.36 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1.7 KB
Binary file not shown.
9.32 KB
Binary file not shown.
2.76 KB
Binary file not shown.
11.9 KB
Binary file not shown.
8.75 KB
Binary file not shown.
5.69 KB
Binary file not shown.
45.2 KB
Binary file not shown.
50.8 KB
Binary file not shown.
9.88 KB
Binary file not shown.

.packages/@xtuc-ieee754-1.2.0.tgz

3.11 KB
Binary file not shown.

.packages/@xtuc-long-4.2.2.tgz

39.5 KB
Binary file not shown.

.packages/abbrev-1.1.1.tgz

2.25 KB
Binary file not shown.

.packages/accepts-1.3.7.tgz

5.27 KB
Binary file not shown.

.packages/acorn-6.3.0.tgz

242 KB
Binary file not shown.

.packages/acorn-7.1.0.tgz

242 KB
Binary file not shown.

.packages/acorn-jsx-5.1.0.tgz

7.26 KB
Binary file not shown.

.packages/ajv-6.10.2.tgz

194 KB
Binary file not shown.

.packages/ajv-errors-1.0.1.tgz

8.51 KB
Binary file not shown.

.packages/ajv-keywords-3.4.1.tgz

17.6 KB
Binary file not shown.

.packages/ansi-colors-3.2.4.tgz

7.1 KB
Binary file not shown.

.packages/ansi-escapes-4.2.1.tgz

4.38 KB
Binary file not shown.

.packages/ansi-html-0.0.7.tgz

7.41 KB
Binary file not shown.

.packages/ansi-regex-2.1.1.tgz

2.29 KB
Binary file not shown.

.packages/ansi-regex-3.0.0.tgz

2.21 KB
Binary file not shown.

.packages/ansi-regex-4.1.0.tgz

2.68 KB
Binary file not shown.

.packages/ansi-styles-3.2.1.tgz

3.72 KB
Binary file not shown.

.packages/anymatch-2.0.0.tgz

3.36 KB
Binary file not shown.

.packages/aproba-1.2.0.tgz

3.44 KB
Binary file not shown.

.packages/are-we-there-yet-1.1.5.tgz

5.16 KB
Binary file not shown.

.packages/argparse-1.0.10.tgz

29.1 KB
Binary file not shown.

.packages/aria-query-3.0.0.tgz

30.9 KB
Binary file not shown.

.packages/arr-diff-4.0.0.tgz

3.13 KB
Binary file not shown.

.packages/arr-flatten-1.1.0.tgz

2.8 KB
Binary file not shown.

.packages/arr-union-3.1.0.tgz

2.79 KB
Binary file not shown.

.packages/array-flatten-1.1.1.tgz

1.95 KB
Binary file not shown.

.packages/array-flatten-2.1.2.tgz

2.34 KB
Binary file not shown.

.packages/array-includes-3.0.3.tgz

9.55 KB
Binary file not shown.

.packages/array-union-1.0.2.tgz

1.44 KB
Binary file not shown.

.packages/array-uniq-1.0.3.tgz

1.92 KB
Binary file not shown.

.packages/array-unique-0.3.2.tgz

2.72 KB
Binary file not shown.

.packages/asn1.js-4.10.1.tgz

12.2 KB
Binary file not shown.

.packages/assert-1.5.0.tgz

9.9 KB
Binary file not shown.

.packages/assign-symbols-1.0.0.tgz

2.52 KB
Binary file not shown.

.packages/ast-types-flow-0.0.7.tgz

8.36 KB
Binary file not shown.

.packages/astral-regex-1.0.0.tgz

1.51 KB
Binary file not shown.

.packages/async-2.6.3.tgz

121 KB
Binary file not shown.

.packages/async-each-1.0.3.tgz

1.97 KB
Binary file not shown.

.packages/async-limiter-1.0.1.tgz

3.3 KB
Binary file not shown.

.packages/atob-2.1.2.tgz

12.4 KB
Binary file not shown.

.packages/axobject-query-2.0.2.tgz

16.9 KB
Binary file not shown.

.packages/babel-eslint-10.0.3.tgz

9.15 KB
Binary file not shown.

.packages/babel-loader-8.0.6.tgz

11.9 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

.packages/balanced-match-1.0.0.tgz

2.51 KB
Binary file not shown.

.packages/base-0.11.2.tgz

8.72 KB
Binary file not shown.

.packages/base64-js-1.3.1.tgz

3.79 KB
Binary file not shown.

.packages/batch-0.6.1.tgz

3.3 KB
Binary file not shown.

.packages/big.js-3.2.0.tgz

14.1 KB
Binary file not shown.

.packages/big.js-5.2.2.tgz

15.9 KB
Binary file not shown.
2.1 KB
Binary file not shown.

.packages/bluebird-3.7.1.tgz

137 KB
Binary file not shown.

.packages/bn.js-4.11.8.tgz

22.7 KB
Binary file not shown.

.packages/body-parser-1.19.0.tgz

13.6 KB
Binary file not shown.

.packages/bonjour-3.5.0.tgz

9.2 KB
Binary file not shown.

.packages/boolbase-1.0.0.tgz

851 Bytes
Binary file not shown.

.packages/brace-expansion-1.1.11.tgz

4.14 KB
Binary file not shown.

.packages/braces-2.3.2.tgz

17.1 KB
Binary file not shown.

.packages/brorand-1.1.0.tgz

2.45 KB
Binary file not shown.

.packages/browserify-aes-1.2.0.tgz

7.61 KB
Binary file not shown.

.packages/browserify-cipher-1.0.1.tgz

2.31 KB
Binary file not shown.

.packages/browserify-des-1.0.2.tgz

2.26 KB
Binary file not shown.

.packages/browserify-rsa-4.0.1.tgz

5.86 KB
Binary file not shown.

.packages/browserify-sign-4.0.4.tgz

4.29 KB
Binary file not shown.

.packages/browserify-zlib-0.2.0.tgz

46.9 KB
Binary file not shown.

.packages/browserslist-4.7.2.tgz

19.8 KB
Binary file not shown.

.packages/buffer-4.9.1.tgz

58 KB
Binary file not shown.

.packages/buffer-from-1.1.1.tgz

2.24 KB
Binary file not shown.

.packages/buffer-indexof-1.1.1.tgz

5.19 KB
Binary file not shown.

.packages/buffer-xor-1.0.3.tgz

2.24 KB
Binary file not shown.

.packages/builtin-modules-3.1.0.tgz

2.11 KB
Binary file not shown.
2.32 KB
Binary file not shown.

.packages/bytes-3.0.0.tgz

4.05 KB
Binary file not shown.

.packages/bytes-3.1.0.tgz

4.12 KB
Binary file not shown.

.packages/cacache-12.0.3.tgz

31.9 KB
Binary file not shown.

.packages/cache-base-1.0.1.tgz

4.73 KB
Binary file not shown.

.packages/callsites-3.1.0.tgz

2.38 KB
Binary file not shown.

.packages/camel-case-3.0.0.tgz

1.6 KB
Binary file not shown.

.packages/camelcase-5.3.1.tgz

2.96 KB
Binary file not shown.
260 KB
Binary file not shown.

.packages/chalk-2.4.2.tgz

9.63 KB
Binary file not shown.

.packages/chardet-0.7.0.tgz

16.5 KB
Binary file not shown.

.packages/chokidar-2.1.8.tgz

24.7 KB
Binary file not shown.

.packages/chownr-1.1.3.tgz

2.04 KB
Binary file not shown.
5.9 KB
Binary file not shown.

.packages/cipher-base-1.0.4.tgz

2.97 KB
Binary file not shown.

.packages/class-utils-0.3.6.tgz

5.25 KB
Binary file not shown.

.packages/clean-css-4.2.1.tgz

88.1 KB
Binary file not shown.

.packages/cli-cursor-3.1.0.tgz

2.08 KB
Binary file not shown.

.packages/cli-width-2.2.0.tgz

2.46 KB
Binary file not shown.

.packages/cliui-4.1.0.tgz

5.31 KB
Binary file not shown.

.packages/cliui-5.0.0.tgz

5.4 KB
Binary file not shown.

.packages/code-point-at-1.1.0.tgz

1.73 KB
Binary file not shown.

.packages/collection-visit-1.0.0.tgz

2.82 KB
Binary file not shown.

.packages/color-convert-1.9.3.tgz

8.67 KB
Binary file not shown.

.packages/color-name-1.1.3.tgz

3.98 KB
Binary file not shown.

.packages/commander-2.17.1.tgz

17.8 KB
Binary file not shown.

.packages/commander-2.19.0.tgz

17.9 KB
Binary file not shown.

.packages/commander-2.20.3.tgz

18.3 KB
Binary file not shown.

.packages/commondir-1.0.1.tgz

2.21 KB
Binary file not shown.

.packages/component-emitter-1.3.0.tgz

3.03 KB
Binary file not shown.

.packages/compressible-2.0.17.tgz

2.95 KB
Binary file not shown.

.packages/compression-1.7.4.tgz

7.64 KB
Binary file not shown.

.packages/concat-map-0.0.1.tgz

2.21 KB
Binary file not shown.

.packages/concat-stream-1.6.2.tgz

3.72 KB
Binary file not shown.
2.02 KB
Binary file not shown.
4.57 KB
Binary file not shown.
4.13 KB
Binary file not shown.
3.26 KB
Binary file not shown.
3.3 KB
Binary file not shown.

.packages/contains-path-0.1.0.tgz

2.26 KB
Binary file not shown.
6.6 KB
Binary file not shown.

.packages/content-type-1.0.4.tgz

4.55 KB
Binary file not shown.
3.84 KB
Binary file not shown.

.packages/cookie-0.4.0.tgz

6.26 KB
Binary file not shown.

.packages/cookie-signature-1.0.6.tgz

2.06 KB
Binary file not shown.

.packages/copy-concurrently-1.0.5.tgz

4.63 KB
Binary file not shown.

.packages/copy-descriptor-0.1.1.tgz

1.93 KB
Binary file not shown.

.packages/copy-to-clipboard-3.2.0.tgz

32.3 KB
Binary file not shown.

.packages/core-js-compat-3.4.0.tgz

24.1 KB
Binary file not shown.

.packages/core-util-is-1.0.2.tgz

6.85 KB
Binary file not shown.

.packages/create-ecdh-4.0.3.tgz

2.43 KB
Binary file not shown.

.packages/create-hash-1.2.0.tgz

2.39 KB
Binary file not shown.

.packages/create-hmac-1.1.7.tgz

2.37 KB
Binary file not shown.

.packages/cross-spawn-6.0.5.tgz

7.32 KB
Binary file not shown.
15.1 KB
Binary file not shown.

.packages/css-loader-3.2.0.tgz

19.5 KB
Binary file not shown.

.packages/css-select-1.2.0.tgz

9.71 KB
Binary file not shown.

.packages/css-what-2.1.3.tgz

3.86 KB
Binary file not shown.

.packages/cssesc-3.0.0.tgz

6.34 KB
Binary file not shown.

.packages/cyclist-1.0.1.tgz

2.26 KB
Binary file not shown.
3.91 KB
Binary file not shown.

.packages/de-indent-1.0.2.tgz

1.04 KB
Binary file not shown.

.packages/debug-2.6.9.tgz

16.1 KB
Binary file not shown.

.packages/debug-3.2.6.tgz

20 KB
Binary file not shown.

.packages/debug-4.1.1.tgz

21.3 KB
Binary file not shown.

.packages/decamelize-1.2.0.tgz

1.65 KB
Binary file not shown.
2.63 KB
Binary file not shown.

.packages/deep-equal-1.0.1.tgz

3.71 KB
Binary file not shown.

.packages/deep-equal-1.1.0.tgz

6.2 KB
Binary file not shown.

.packages/deep-extend-0.6.0.tgz

3.54 KB
Binary file not shown.

.packages/deep-is-0.1.3.tgz

3.41 KB
Binary file not shown.

.packages/default-gateway-4.2.0.tgz

3.77 KB
Binary file not shown.

.packages/define-properties-1.1.3.tgz

6.15 KB
Binary file not shown.

.packages/define-property-0.2.5.tgz

2.25 KB
Binary file not shown.

.packages/define-property-1.0.0.tgz

2.71 KB
Binary file not shown.

.packages/define-property-2.0.2.tgz

3.95 KB
Binary file not shown.

.packages/defined-1.0.0.tgz

2.11 KB
Binary file not shown.

.packages/del-4.1.1.tgz

3.3 KB
Binary file not shown.

.packages/delegates-1.0.0.tgz

2.78 KB
Binary file not shown.

.packages/depcheck-0.9.0.tgz

172 KB
Binary file not shown.

.packages/depd-1.1.2.tgz

8.81 KB
Binary file not shown.

.packages/deps-regex-0.1.4.tgz

1.27 KB
Binary file not shown.

.packages/des.js-1.0.0.tgz

9.75 KB
Binary file not shown.

.packages/destroy-1.0.4.tgz

2.28 KB
Binary file not shown.

.packages/detect-file-1.0.0.tgz

3.33 KB
Binary file not shown.

.packages/detect-libc-1.0.3.tgz

6.13 KB
Binary file not shown.

.packages/detect-node-2.0.4.tgz

1.54 KB
Binary file not shown.

.packages/diffie-hellman-5.0.3.tgz

5.21 KB
Binary file not shown.

.packages/dns-equal-1.0.0.tgz

1.88 KB
Binary file not shown.

.packages/dns-packet-1.3.1.tgz

6.74 KB
Binary file not shown.

.packages/dns-txt-2.0.2.tgz

4.06 KB
Binary file not shown.

.packages/doctrine-1.5.0.tgz

19.6 KB
Binary file not shown.

.packages/doctrine-2.1.0.tgz

21.7 KB
Binary file not shown.

.packages/doctrine-3.0.0.tgz

21.8 KB
Binary file not shown.

.packages/dom-converter-0.2.0.tgz

3.01 KB
Binary file not shown.

.packages/dom-serializer-0.2.1.tgz

3.85 KB
Binary file not shown.

.packages/domain-browser-1.2.0.tgz

4.73 KB
Binary file not shown.

.packages/domelementtype-1.3.1.tgz

1.26 KB
Binary file not shown.

.packages/domelementtype-2.0.1.tgz

2.15 KB
Binary file not shown.

.packages/domhandler-2.4.2.tgz

7.54 KB
Binary file not shown.

.packages/domutils-1.5.1.tgz

6.2 KB
Binary file not shown.

.packages/domutils-1.7.0.tgz

6.36 KB
Binary file not shown.

.packages/duplexify-3.7.1.tgz

4.92 KB
Binary file not shown.

.packages/ee-first-1.1.1.tgz

2.67 KB
Binary file not shown.
6.78 KB
Binary file not shown.

.packages/elliptic-6.5.1.tgz

40.4 KB
Binary file not shown.

.packages/email-addresses-3.1.0.tgz

23.2 KB
Binary file not shown.

.packages/emoji-regex-7.0.3.tgz

5.86 KB
Binary file not shown.

.packages/emoji-regex-8.0.0.tgz

6.51 KB
Binary file not shown.

.packages/emojis-list-2.1.0.tgz

10.2 KB
Binary file not shown.

.packages/encodeurl-1.0.2.tgz

3.18 KB
Binary file not shown.

.packages/end-of-stream-1.4.4.tgz

2.33 KB
Binary file not shown.

.packages/enhanced-resolve-4.1.0.tgz

19.3 KB
Binary file not shown.

.packages/enhanced-resolve-4.1.1.tgz

19.6 KB
Binary file not shown.

.packages/entities-1.1.2.tgz

16.9 KB
Binary file not shown.

.packages/entities-2.0.0.tgz

17.6 KB
Binary file not shown.

.packages/errno-0.1.7.tgz

6.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)