Advertisement
Guest User

Untitled

a guest
Apr 11th, 2017
600
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.35 KB | None | 0 0
  1. 2017-04-11T04:54:31.000000+00:00 app[api]: Build started by user heliotherapyy@gmail.com
  2. 2017-04-11T04:55:05.124340+00:00 app[api]: Deploy 8f241f1 by user heliotherapyy@gmail.com
  3. 2017-04-11T04:55:05.124340+00:00 app[api]: Release v8 created by user heliotherapyy@gmail.com
  4. 2017-04-11T04:54:31.000000+00:00 app[api]: Build succeeded
  5. 2017-04-11T04:55:05.490326+00:00 app[api]: Release v8 created by user heliotherapyy@gmail.com
  6. 2017-04-11T04:55:05.742229+00:00 heroku[web.1]: State changed from crashed to starting
  7. 2017-04-11T04:55:09.582152+00:00 heroku[web.1]: Starting process with command `npm start`
  8. 2017-04-11T04:55:11.697099+00:00 app[web.1]:
  9. 2017-04-11T04:55:11.697113+00:00 app[web.1]: > teleos@0.0.3 start /app
  10. 2017-04-11T04:55:11.697114+00:00 app[web.1]: > webpack-dev-server --progress --profile --colors
  11. 2017-04-11T04:55:11.697115+00:00 app[web.1]:
  12. 2017-04-11T04:55:12.594 70% 1/1 build modules http://127.0.0.1:54499/
  13. 2017-04-11T04:55:12.594337+00:00 app[web.1]: webpack result is served from /
  14. 2017-04-11T04:55:12.594384+00:00 app[web.1]: content is served from ./public
  15. 2017-04-11T04:55:12.594457+00:00 app[web.1]: 404s will fallback to /index.html
  16. 2017-04-11T04:55:17. 42% 73/136 build modules
  17. 2017-04-11T04:55:17 58% 180/223 build modules
  18. 2017-04-11T04:55:17.879336+00:00 app[web.1] 63% 281/315 build modules
  19. 2017-04-11T04:55:17.879336+00:0 63% 373/415 build modules
  20. 2017-04-11T04:55:17.879 68% 484/496 build modules
  21. 2017-04-11T04:55:17.879336+00:00 app[we5304ms build modules
  22. 2017-04-11T04:55:17.886137+00:00 app8ms seal
  23. 2017-04-11T04:55:17.896354+00:0010ms optimize
  24. 2017-04-11T04:55:17.908569+00:00 12ms hashing
  25. 2017-04-11T04:55:18.762ms create chunk assets
  26. 2017-04-11T04:55:18ms additional chunk assets
  27. 2017-04-11T04:55:180ms optimize chunk assets
  28. 2017-04-11T04:55:18.8373149ms optimize assets
  29. 2017-04-11T04:55:18.896612+00:00 app59ms emit
  30. 2017-04-11T04:56:10.046877+00:00 app[web.1]: Error waiting for process to
  31. terminate: No child processes
  32. 2017-04-11T04:56:10.028392+00:00 heroku[web.1]: Error R10 (Boot timeout) ->
  33. Web process failed to bind to $PORT within 60 seconds of launch
  34. 2017-04-11T04:56:10.028452+00:00 heroku[web.1]: Stopping process with SIGKILL
  35. 2017-04-11T04:56:10.147218+00:00 heroku[web.1]: Process exited with status 22
  36. 2017-04-11T04:56:10.134762+00:00 heroku[web.1]: State changed from starting to
  37. crashed
  38.  
  39. "use strict";
  40. var webpack = require('webpack');
  41. var path = require('path');
  42. var loaders = require('./webpack.loaders');
  43. var HtmlWebpackPlugin = require('html-webpack-plugin');
  44. var DashboardPlugin = require('webpack-dashboard/plugin');
  45. var ExtractTextPlugin = require('extract-text-webpack-plugin');
  46.  
  47. const HOST = process.env.HOST || "127.0.0.1";
  48. const PORT = process.env.PORT || "8888";
  49.  
  50. loaders.push({
  51. test: /.scss$/,
  52. loader: ExtractTextPlugin.extract('style', 'css?sourceMap&localIdentName=[local]___[hash:base64:5]!sass?outputStyle=expanded'),
  53. exclude: ['node_modules']
  54. });
  55.  
  56. module.exports = {
  57. entry: [
  58. 'react-hot-loader/patch',
  59. './src/index.jsx', // your app's entry point
  60. './styles/index.scss'
  61. ],
  62. debug: true,
  63. devtool: '#eval-source-map',
  64. output: {
  65. publicPath: '/',
  66. path: path.join(__dirname, 'public'),
  67. filename: 'bundle.js'
  68. },
  69. resolve: {
  70. extensions: ['', '.js', '.jsx']
  71. },
  72. module: {
  73. loaders
  74. },
  75. devServer: {
  76. contentBase: "./public",
  77. // do not print bundle build stats
  78. noInfo: true,
  79. // enable HMR
  80. hot: true,
  81. // embed the webpack-dev-server runtime into the bundle
  82. inline: true,
  83. // serve index.html in place of 404 responses to allow HTML5 history
  84. historyApiFallback: true,
  85. port: PORT,
  86. host: HOST
  87. },
  88. plugins: [
  89. new webpack.NoErrorsPlugin(),
  90. new webpack.HotModuleReplacementPlugin(),
  91. new ExtractTextPlugin("style.css", {
  92. allChunks: true
  93. }),
  94. new DashboardPlugin(),
  95. new HtmlWebpackPlugin({
  96. template: './src/template.html',
  97. files: {
  98. css: ['style.css'],
  99. js: [ "bundle.js"],
  100. }
  101. }),
  102. ]
  103. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement