REVERT deletion of smoke tests on cli output && REVERT babel6 cli fixture

This commit is contained in:
Norbert de Langen 2018-08-16 15:39:49 +02:00
parent f36869afa5
commit df723e0ec1
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
3 changed files with 26 additions and 9 deletions

View File

@ -11,10 +11,9 @@
"react-dom": "^15.6.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-rc.1",
"@babel/plugin-external-helpers": "^7.0.0-rc.1",
"@babel/preset-react": "^7.0.0-rc.1",
"babel-core": "^7.0.0-bridge.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-react": "^6.24.1",
"rollup": "^0.49.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.0",

View File

@ -83,3 +83,22 @@ if [ $update_only -eq 1 ]
then
exit 0
fi
# install all the dependencies in a single run
cd ../../..
yarn --pure-lockfile
cd ${test_root}/run
for dir in *
do
# check that storybook starts without errors
# smoke-test option may be unknown in earlier storybook versions,
# so skip `already_has_storybook` here
if [ $dir != "already_has_storybook" ]
then
cd $dir
echo "Running smoke test in $dir"
yarn storybook --smoke-test
cd ..
fi
done

View File

@ -13,10 +13,9 @@
"react-dom": "^15.6.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-rc.1",
"@babel/plugin-external-helpers": "^7.0.0-rc.1",
"@babel/preset-react": "^7.0.0-rc.1",
"babel-core": "^7.0.0-bridge.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-react": "^6.24.1",
"rollup": "^0.49.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.0",
@ -26,6 +25,6 @@
"@storybook/addon-actions": "^4.0.0-alpha.16",
"@storybook/addon-links": "^4.0.0-alpha.16",
"@storybook/addons": "^4.0.0-alpha.16",
"babel-loader": "^8.0.0-beta.4"
"babel-loader": "^7.1.5"
}
}