Skip to content

Commit d9f0644

Browse files
committed
fix: fix build
1 parent edfbfc8 commit d9f0644

File tree

4 files changed

+109
-87
lines changed

4 files changed

+109
-87
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
"jest": "^24.1.0",
3636
"lerna": "^3.13.0",
3737
"prettier": "^1.16.4",
38-
"react": "^16.8.2",
39-
"react-dom": "^16.8.2",
38+
"react": "^16.8.3",
39+
"react-dom": "^16.8.3",
4040
"shx": "^0.3.2"
4141
}
4242
}

packages/smooth-core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@
4343
"@babel/runtime": "^7.3.1",
4444
"@emotion/core": "^10.0.7",
4545
"@loadable/babel-plugin": "^5.6.0",
46-
"@loadable/component": "^5.6.0",
47-
"@loadable/server": "^5.6.0",
46+
"@loadable/component": "^5.6.1",
47+
"@loadable/server": "^5.6.1",
4848
"@loadable/webpack-plugin": "^5.5.0",
4949
"apollo-cache-inmemory": "^1.4.3",
5050
"apollo-client": "^2.4.13",
5151
"apollo-link": "^1.2.8",
5252
"apollo-link-http": "^1.5.11",
5353
"apollo-link-schema": "^1.1.6",
54-
"apollo-server-express": "^2.4.2",
54+
"apollo-server-express": "^2.4.6",
5555
"axios": "^0.18.0",
5656
"babel-loader": "^8.0.5",
5757
"camelcase": "^5.0.0",
@@ -77,7 +77,7 @@
7777
"slugify": "^1.3.4",
7878
"tiny-glob": "^0.2.6",
7979
"webpack": "^4.29.5",
80-
"webpack-dev-middleware": "^3.5.2",
80+
"webpack-dev-middleware": "^3.6.0",
8181
"webpack-hot-middleware": "^2.24.3",
8282
"webpack-node-externals": "^1.7.2"
8383
}

packages/smooth-core/src/cli/index.js

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,16 +65,19 @@ async function devCommand() {
6565
watch({ config })
6666
}
6767

68+
async function logBuild(operation, name) {
69+
console.log(`Building ${name}`)
70+
const timeKey = `Build ${name}`
71+
console.time(timeKey)
72+
await operation()
73+
console.timeEnd(timeKey)
74+
}
75+
6876
async function buildCommand() {
6977
const config = await getConfig({ dev: false })
70-
console.log('Building schema')
71-
console.time('Build schema')
72-
await buildSchema({ config })
73-
console.timeEnd('Build schema')
74-
console.log('Building webpack')
75-
console.time('Build webpack')
76-
await buildWebpack({ config })
77-
console.timeEnd('Build webpack')
78+
await logBuild(() => buildBrowserPlugins({ config }), 'plugins')
79+
await logBuild(() => buildSchema({ config }), 'schema')
80+
await logBuild(() => buildWebpack({ config }), 'webpack')
7881
// eslint-disable-next-line no-console
7982
console.log('Built!')
8083
}

yarn.lock

Lines changed: 92 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -1511,17 +1511,17 @@
15111511
dependencies:
15121512
"@babel/plugin-syntax-dynamic-import" "^7.2.0"
15131513

1514-
"@loadable/component@^5.6.0":
1515-
version "5.6.0"
1516-
resolved "https://registry.yarnpkg.com/@loadable/component/-/component-5.6.0.tgz#28f79caeccc956205a0e38494ea26c49428461d7"
1517-
integrity sha512-GeVzzAiKLC+CFr/Pf7uIsbRmzDLJ9XC4rb6AM2zIns6yziOvJTjKsO31PUuIxuMwNEKwlOpUkkBarBbwb45bHA==
1514+
"@loadable/component@^5.6.1":
1515+
version "5.6.1"
1516+
resolved "https://registry.yarnpkg.com/@loadable/component/-/component-5.6.1.tgz#7c4cc7619280ae39a770583e05c3e9980bb3a615"
1517+
integrity sha512-lkRMQiekLmBIANxdx/Ybod8s2KQKnS0yAHl6abv1MenSjV9OmtLMjeOMz3RB7AItgOo6D7GPTWIJr1eHswV/Iw==
15181518
dependencies:
1519-
hoist-non-react-statics "^3.2.1"
1519+
hoist-non-react-statics "^3.3.0"
15201520

1521-
"@loadable/server@^5.6.0":
1522-
version "5.6.0"
1523-
resolved "https://registry.yarnpkg.com/@loadable/server/-/server-5.6.0.tgz#c1a31273ef2263f39a3f049e16d6d1f00d5505a0"
1524-
integrity sha512-fmo1P0FKNqEagp8soR/dqd+pZlOTzY1CkQozdStn78rtdZnysYkmMW81g9gYzl+3ZZUYoZSzotGYV8t9xuPsow==
1521+
"@loadable/server@^5.6.1":
1522+
version "5.6.1"
1523+
resolved "https://registry.yarnpkg.com/@loadable/server/-/server-5.6.1.tgz#b3425c34f4e56411965aaac070e2573ab1f2cbf0"
1524+
integrity sha512-XTonaoyiGtoNCQyQYy1z8wHghaJ/JAD6MJWO+r9GoOBnjO2P76zhn9+XqVQpE5OEiWQOE02hsWptqPvXIxKtEQ==
15251525
dependencies:
15261526
lodash "^4.17.11"
15271527

@@ -2087,13 +2087,13 @@ anymatch@^2.0.0:
20872087
micromatch "^3.1.4"
20882088
normalize-path "^2.1.1"
20892089

2090-
apollo-cache-control@0.5.1:
2091-
version "0.5.1"
2092-
resolved "https://registry.yarnpkg.com/apollo-cache-control/-/apollo-cache-control-0.5.1.tgz#db7e86cd7ede6cad0a2e0ea97488d9fb5c33d913"
2093-
integrity sha512-82hzX7/fFiu5dODLS8oGieEE4jLjMIhIkQ4JTsWj9drv8PZJltl0xqORtU2jA/FottjxfYab8+ebi3BgGPOaqw==
2090+
apollo-cache-control@0.5.2:
2091+
version "0.5.2"
2092+
resolved "https://registry.yarnpkg.com/apollo-cache-control/-/apollo-cache-control-0.5.2.tgz#47931ede0b11c64d45429850c274b30d19322362"
2093+
integrity sha512-uehXDUrd3Qim+nzxqqN7XT1YTbNSyumW3/FY5BxbKZTI8d4oPG4eyVQKqaggooSjswKQnOoIQVes3+qg9tGAkw==
20942094
dependencies:
20952095
apollo-server-env "2.2.0"
2096-
graphql-extensions "0.5.2"
2096+
graphql-extensions "0.5.4"
20972097

20982098
apollo-cache-inmemory@^1.4.3:
20992099
version "1.4.3"
@@ -2142,17 +2142,17 @@ apollo-engine-reporting-protobuf@0.2.1:
21422142
dependencies:
21432143
protobufjs "^6.8.6"
21442144

2145-
apollo-engine-reporting@1.0.2:
2146-
version "1.0.2"
2147-
resolved "https://registry.yarnpkg.com/apollo-engine-reporting/-/apollo-engine-reporting-1.0.2.tgz#5dd5411f17d76e6788a1166367a2ab7b52794224"
2148-
integrity sha512-g6JkO5WaMuqXfn3WoZMQyyFzpxfHsw/f7P7XTHSEqTSd/M4uk7/uih/xcqmgBGt4ET30KbaGFz2l4FJzO06A5w==
2145+
apollo-engine-reporting@1.0.5:
2146+
version "1.0.5"
2147+
resolved "https://registry.yarnpkg.com/apollo-engine-reporting/-/apollo-engine-reporting-1.0.5.tgz#50caef845841e09937766febf193f42df4d5365f"
2148+
integrity sha512-G4KcA6/eKWtH/WwvOtLoH7o4c1l3EuZsX6ZscBIEPYI78LmhjztG+UI+i3FW1BodURsqimBrbSM+h/JsYIrj+Q==
21492149
dependencies:
21502150
apollo-engine-reporting-protobuf "0.2.1"
21512151
apollo-graphql "^0.1.0"
2152-
apollo-server-core "2.4.2"
2152+
apollo-server-core "2.4.6"
21532153
apollo-server-env "2.2.0"
21542154
async-retry "^1.2.1"
2155-
graphql-extensions "0.5.2"
2155+
graphql-extensions "0.5.5"
21562156

21572157
apollo-env@0.3.3:
21582158
version "0.3.3"
@@ -2220,24 +2220,24 @@ apollo-server-caching@0.3.1:
22202220
dependencies:
22212221
lru-cache "^5.0.0"
22222222

2223-
apollo-server-core@2.4.2:
2224-
version "2.4.2"
2225-
resolved "https://registry.yarnpkg.com/apollo-server-core/-/apollo-server-core-2.4.2.tgz#916d98636b1bf576a84b4a469006c1c73741e03a"
2226-
integrity sha512-IOWhqjjI1sH38sj7ycjke0dXXEgaqOkb2hDpLBTSiVWKBIqFfo4gchWK5wcWW9jReDpf/+G2wogH+UvONs2ejg==
2223+
apollo-server-core@2.4.6:
2224+
version "2.4.6"
2225+
resolved "https://registry.yarnpkg.com/apollo-server-core/-/apollo-server-core-2.4.6.tgz#3da9eec5df3a5b6123193235faa44b47b2239b80"
2226+
integrity sha512-sz/a9AKCx5ifnQAehmgXhnmEWv43LCbRnL1V1Z2P5C8xSmWubCskgu6jKPMc2cG1QFLWAXaA8cF4gD9sNGOFTQ==
22272227
dependencies:
22282228
"@apollographql/apollo-tools" "^0.3.3"
22292229
"@apollographql/graphql-playground-html" "^1.6.6"
22302230
"@types/ws" "^6.0.0"
2231-
apollo-cache-control "0.5.1"
2231+
apollo-cache-control "0.5.2"
22322232
apollo-datasource "0.3.1"
2233-
apollo-engine-reporting "1.0.2"
2233+
apollo-engine-reporting "1.0.5"
22342234
apollo-server-caching "0.3.1"
22352235
apollo-server-env "2.2.0"
2236-
apollo-server-errors "2.2.0"
2237-
apollo-server-plugin-base "0.3.2"
2238-
apollo-tracing "0.5.1"
2236+
apollo-server-errors "2.2.1"
2237+
apollo-server-plugin-base "0.3.5"
2238+
apollo-tracing "0.5.2"
22392239
fast-json-stable-stringify "^2.0.0"
2240-
graphql-extensions "0.5.2"
2240+
graphql-extensions "0.5.5"
22412241
graphql-subscriptions "^1.0.0"
22422242
graphql-tag "^2.9.2"
22432243
graphql-tools "^4.0.0"
@@ -2254,41 +2254,41 @@ apollo-server-env@2.2.0:
22542254
node-fetch "^2.1.2"
22552255
util.promisify "^1.0.0"
22562256

2257-
apollo-server-errors@2.2.0:
2258-
version "2.2.0"
2259-
resolved "https://registry.yarnpkg.com/apollo-server-errors/-/apollo-server-errors-2.2.0.tgz#5b452a1d6ff76440eb0f127511dc58031a8f3cb5"
2260-
integrity sha512-gV9EZG2tovFtT1cLuCTavnJu2DaKxnXPRNGSTo+SDI6IAk6cdzyW0Gje5N2+3LybI0Wq5KAbW6VLei31S4MWmg==
2257+
apollo-server-errors@2.2.1:
2258+
version "2.2.1"
2259+
resolved "https://registry.yarnpkg.com/apollo-server-errors/-/apollo-server-errors-2.2.1.tgz#f68a3f845929768057da7e1c6d30517db5872205"
2260+
integrity sha512-wY/YE3iJVMYC+WYIf8QODBjIP4jhI+oc7kiYo9mrz7LdYPKAgxr/he+NteGcqn/0Ea9K5/ZFTGJDbEstSMeP8g==
22612261

2262-
apollo-server-express@^2.4.2:
2263-
version "2.4.2"
2264-
resolved "https://registry.yarnpkg.com/apollo-server-express/-/apollo-server-express-2.4.2.tgz#870daf04fd9b727a54b1339cdb55066450b3e05a"
2265-
integrity sha512-Q5/unCAi6a2dT39LQaIiLC1d8O4fmBDU2CrRhVhPWP8I344xPgNOcrs7MsNN7Ecb56UGbgDKxBoWowFG65ulKw==
2262+
apollo-server-express@^2.4.6:
2263+
version "2.4.6"
2264+
resolved "https://registry.yarnpkg.com/apollo-server-express/-/apollo-server-express-2.4.6.tgz#99707b3e9f1f46c2d91f5b5821de8d3452f5f824"
2265+
integrity sha512-YlWUjxrveKFSOCyExTa5rTwePeELhjolzP6cAlFIak+kJTnOiJWoTCYzaftkpwmK+c4IyA5XUgC0YhowcrIgEw==
22662266
dependencies:
22672267
"@apollographql/graphql-playground-html" "^1.6.6"
22682268
"@types/accepts" "^1.3.5"
22692269
"@types/body-parser" "1.17.0"
22702270
"@types/cors" "^2.8.4"
22712271
"@types/express" "4.16.1"
22722272
accepts "^1.3.5"
2273-
apollo-server-core "2.4.2"
2273+
apollo-server-core "2.4.6"
22742274
body-parser "^1.18.3"
22752275
cors "^2.8.4"
22762276
graphql-subscriptions "^1.0.0"
22772277
graphql-tools "^4.0.0"
22782278
type-is "^1.6.16"
22792279

2280-
apollo-server-plugin-base@0.3.2:
2281-
version "0.3.2"
2282-
resolved "https://registry.yarnpkg.com/apollo-server-plugin-base/-/apollo-server-plugin-base-0.3.2.tgz#4609c9a9d154568401d84b7ac17d1e30e3529104"
2283-
integrity sha512-yzXrkVSPBoux2uPgbTGROGh7W0axRWopMZM+KT9aF9H/+yMCwtt0EhGOGyNUDMOFA4rT3z+cLVvYuZr1rSQWcg==
2280+
apollo-server-plugin-base@0.3.5:
2281+
version "0.3.5"
2282+
resolved "https://registry.yarnpkg.com/apollo-server-plugin-base/-/apollo-server-plugin-base-0.3.5.tgz#0bc268a5b3cd9a995ca181dee33c34c00c712ac4"
2283+
integrity sha512-z6xAgQip1RAXf0lQ2T8szCAbD8bCcbcwq4gGJ37ELcMGGTCTp2XOAz/PwIe9Re2Hzuk+OPlKK0AZng7qpXtDkg==
22842284

2285-
apollo-tracing@0.5.1:
2286-
version "0.5.1"
2287-
resolved "https://registry.yarnpkg.com/apollo-tracing/-/apollo-tracing-0.5.1.tgz#16be201bc276120f0f8b7aa180201ee89d57e3bd"
2288-
integrity sha512-5gb8OWzkGaJFsmQdyMyZnOjcq6weMTkqJSGj0hfR7uX99X4SBFAzZV4nTeK4z0XkXO2I12xSTJoS4gxbFjgeaA==
2285+
apollo-tracing@0.5.2:
2286+
version "0.5.2"
2287+
resolved "https://registry.yarnpkg.com/apollo-tracing/-/apollo-tracing-0.5.2.tgz#cc49936fb435fa98d19c841514cfe05237c85b33"
2288+
integrity sha512-2FdwRvPIq9uuF6OzONroXep6VBGqzHOkP6LlcFQe7SdwxfRP+SD/ycHNSC1acVg2b8d+am9Kzqg2vV54UpOIKA==
22892289
dependencies:
22902290
apollo-server-env "2.2.0"
2291-
graphql-extensions "0.5.2"
2291+
graphql-extensions "0.5.4"
22922292

22932293
apollo-utilities@1.1.3, apollo-utilities@^1.1.3:
22942294
version "1.1.3"
@@ -5228,10 +5228,17 @@ graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6
52285228
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
52295229
integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==
52305230

5231-
graphql-extensions@0.5.2:
5232-
version "0.5.2"
5233-
resolved "https://registry.yarnpkg.com/graphql-extensions/-/graphql-extensions-0.5.2.tgz#cdced94c1931c9983fffcc144e336d6cd4d8b02b"
5234-
integrity sha512-D/FAvjYEZ8GM3vfALxRvItozy5iLUfzyoauE2lli+0OuUBCAZDLP0fgqeTFK93NnQX/XSjBVGhcuDWBB7JesEw==
5231+
graphql-extensions@0.5.4:
5232+
version "0.5.4"
5233+
resolved "https://registry.yarnpkg.com/graphql-extensions/-/graphql-extensions-0.5.4.tgz#18a9674f9adb11aa6c0737485887ea8877914cff"
5234+
integrity sha512-qLThJGVMqcItE7GDf/xX/E40m/aeqFheEKiR5bfra4q5eHxQKGjnIc20P9CVqjOn9I0FkEiU9ypOobfmIf7t6g==
5235+
dependencies:
5236+
"@apollographql/apollo-tools" "^0.3.3"
5237+
5238+
graphql-extensions@0.5.5:
5239+
version "0.5.5"
5240+
resolved "https://registry.yarnpkg.com/graphql-extensions/-/graphql-extensions-0.5.5.tgz#0293a149bd4074bf350612e708d07f8f28fb18ce"
5241+
integrity sha512-jCUt/WVayiQvmXVPMetmq3wpV3RyzXOXFfssoTz9/YFuoSg1Y7BwzgNuilSybQqMPRdfGAsqf/OIa1DZwrnggw==
52355242
dependencies:
52365243
"@apollographql/apollo-tools" "^0.3.3"
52375244

@@ -5442,13 +5449,20 @@ hoist-non-react-statics@^2.5.0:
54425449
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz#c5903cf409c0dfd908f388e619d86b9c1174cb47"
54435450
integrity sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==
54445451

5445-
hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.2.1:
5452+
hoist-non-react-statics@^3.0.0:
54465453
version "3.2.1"
54475454
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.2.1.tgz#c09c0555c84b38a7ede6912b61efddafd6e75e1e"
54485455
integrity sha512-TFsu3TV3YLY+zFTZDrN8L2DTFanObwmBLpWvJs1qfUuEQ5bTAdFcwfx2T/bsCXfM9QHSLvjfP+nihEl0yvozxw==
54495456
dependencies:
54505457
react-is "^16.3.2"
54515458

5459+
hoist-non-react-statics@^3.3.0:
5460+
version "3.3.0"
5461+
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.0.tgz#b09178f0122184fb95acf525daaecb4d8f45958b"
5462+
integrity sha512-0XsbTXxgiaCDYDIWFcwkmerZPSwywfUqYmwT4jzewKTQSWoE6FCMoUVOeBJWK3E/CrWbxRG3m5GzY4lnIwGRBA==
5463+
dependencies:
5464+
react-is "^16.7.0"
5465+
54525466
home-or-tmp@^3.0.0:
54535467
version "3.0.0"
54545468
resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-3.0.0.tgz#57a8fe24cf33cdd524860a15821ddc25c86671fb"
@@ -7081,7 +7095,7 @@ mem@^4.0.0:
70817095
mimic-fn "^1.0.0"
70827096
p-is-promise "^1.1.0"
70837097

7084-
memory-fs@^0.4.0, memory-fs@~0.4.1:
7098+
memory-fs@^0.4.0, memory-fs@^0.4.1, memory-fs@~0.4.1:
70857099
version "0.4.1"
70867100
resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
70877101
integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
@@ -8563,15 +8577,15 @@ react-apollo@^2.4.1:
85638577
lodash.isequal "^4.5.0"
85648578
prop-types "^15.6.0"
85658579

8566-
react-dom@^16.8.2:
8567-
version "16.8.2"
8568-
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.2.tgz#7c8a69545dd554d45d66442230ba04a6a0a3c3d3"
8569-
integrity sha512-cPGfgFfwi+VCZjk73buu14pYkYBR1b/SRMSYqkLDdhSEHnSwcuYTPu6/Bh6ZphJFIk80XLvbSe2azfcRzNF+Xg==
8580+
react-dom@^16.8.3:
8581+
version "16.8.3"
8582+
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.3.tgz#ae236029e66210783ac81999d3015dfc475b9c32"
8583+
integrity sha512-ttMem9yJL4/lpItZAQ2NTFAbV7frotHk5DZEHXUOws2rMmrsvh1Na7ThGT0dTzUIl6pqTOi5tYREfL8AEna3lA==
85708584
dependencies:
85718585
loose-envify "^1.1.0"
85728586
object-assign "^4.1.1"
85738587
prop-types "^15.6.2"
8574-
scheduler "^0.13.2"
8588+
scheduler "^0.13.3"
85758589

85768590
react-helmet@^5.2.0:
85778591
version "5.2.0"
@@ -8588,6 +8602,11 @@ react-is@^16.3.2:
85888602
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.7.0.tgz#c1bd21c64f1f1364c6f70695ec02d69392f41bfa"
85898603
integrity sha512-Z0VRQdF4NPDoI0tsXVMLkJLiwEBa+RP66g0xDHxgxysxSoCUccSten4RTF/UFvZF1dZvZ9Zu1sx+MDXwcOR34g==
85908604

8605+
react-is@^16.7.0:
8606+
version "16.8.3"
8607+
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.3.tgz#4ad8b029c2a718fc0cfc746c8d4e1b7221e5387d"
8608+
integrity sha512-Y4rC1ZJmsxxkkPuMLwvKvlL1Zfpbcu+Bf4ZigkHup3v9EfdYhAlWAaVyA19olXq2o2mGn0w+dFKvk3pVVlYcIA==
8609+
85918610
react-router-dom@^4.3.1:
85928611
version "4.3.1"
85938612
resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-4.3.1.tgz#4c2619fc24c4fa87c9fd18f4fb4a43fe63fbd5c6"
@@ -8621,15 +8640,15 @@ react-side-effect@^1.1.0:
86218640
exenv "^1.2.1"
86228641
shallowequal "^1.0.1"
86238642

8624-
react@^16.8.2:
8625-
version "16.8.2"
8626-
resolved "https://registry.yarnpkg.com/react/-/react-16.8.2.tgz#83064596feaa98d9c2857c4deae1848b542c9c0c"
8627-
integrity sha512-aB2ctx9uQ9vo09HVknqv3DGRpI7OIGJhCx3Bt0QqoRluEjHSaObJl+nG12GDdYH6sTgE7YiPJ6ZUyMx9kICdXw==
8643+
react@^16.8.3:
8644+
version "16.8.3"
8645+
resolved "https://registry.yarnpkg.com/react/-/react-16.8.3.tgz#c6f988a2ce895375de216edcfaedd6b9a76451d9"
8646+
integrity sha512-3UoSIsEq8yTJuSu0luO1QQWYbgGEILm+eJl2QN/VLDi7hL+EN18M3q3oVZwmVzzBJ3DkM7RMdRwBmZZ+b4IzSA==
86288647
dependencies:
86298648
loose-envify "^1.1.0"
86308649
object-assign "^4.1.1"
86318650
prop-types "^15.6.2"
8632-
scheduler "^0.13.2"
8651+
scheduler "^0.13.3"
86338652

86348653
read-cmd-shim@^1.0.1:
86358654
version "1.0.1"
@@ -9146,10 +9165,10 @@ sax@^1.2.4:
91469165
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
91479166
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
91489167

9149-
scheduler@^0.13.2:
9150-
version "0.13.2"
9151-
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.13.2.tgz#969eaee2764a51d2e97b20a60963b2546beff8fa"
9152-
integrity sha512-qK5P8tHS7vdEMCW5IPyt8v9MJOHqTrOUgPXib7tqm9vh834ibBX5BNhwkplX/0iOzHW5sXyluehYfS9yrkz9+w==
9168+
scheduler@^0.13.3:
9169+
version "0.13.3"
9170+
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.13.3.tgz#bed3c5850f62ea9c716a4d781f9daeb9b2a58896"
9171+
integrity sha512-UxN5QRYWtpR1egNWzJcVLk8jlegxAugswQc984lD3kU7NuobsO37/sRfbpTdBjtnD5TBNFA2Q2oLV5+UmPSmEQ==
91539172
dependencies:
91549173
loose-envify "^1.1.0"
91559174
object-assign "^4.1.1"
@@ -10418,12 +10437,12 @@ webidl-conversions@^4.0.2:
1041810437
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
1041910438
integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==
1042010439

10421-
webpack-dev-middleware@^3.5.2:
10422-
version "3.5.2"
10423-
resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.5.2.tgz#d768b6194f3fe8d72d51feded49de359e8d96ffb"
10424-
integrity sha512-nPmshdt1ckcwWjI0Ubrdp8KroeuprW6xFKYqk0u3MflNMBXvHPnMATsC7/L/enwav2zvLCfj/Usr47qnF3KQyA==
10440+
webpack-dev-middleware@^3.6.0:
10441+
version "3.6.0"
10442+
resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.6.0.tgz#71f1b04e52ff8d442757af2be3a658237d53a3e5"
10443+
integrity sha512-oeXA3m+5gbYbDBGo4SvKpAHJJEGMoekUbHgo1RK7CP1sz7/WOSeu/dWJtSTk+rzDCLkPwQhGocgIq6lQqOyOwg==
1042510444
dependencies:
10426-
memory-fs "~0.4.1"
10445+
memory-fs "^0.4.1"
1042710446
mime "^2.3.1"
1042810447
range-parser "^1.0.3"
1042910448
webpack-log "^2.0.0"

0 commit comments

Comments
 (0)