This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ERROR in ./~/searchkit/~/history/lib/createBrowserHistory.js | |
Module not found: Error: Cannot resolve module 'invariant' in /Users/alli/code/pro-react/node_modules/searchkit/node_modules/history/lib | |
@ ./~/searchkit/~/history/lib/createBrowserHistory.js 9:17-37 | |
ERROR in ./~/searchkit/~/history/lib/createHashHistory.js | |
Module not found: Error: Cannot resolve module 'invariant' in /Users/alli/code/pro-react/node_modules/searchkit/node_modules/history/lib | |
@ ./~/searchkit/~/history/lib/createHashHistory.js 13:17-37 | |
ERROR in ./~/searchkit/~/history/lib/createMemoryHistory.js | |
Module not found: Error: Cannot resolve module 'invariant' in /Users/alli/code/pro-react/node_modules/searchkit/node_modules/history/lib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "react-app-boilerplate", | |
"version": "0.1.3", | |
"description": "React application boilerplate", | |
"author": "Cássio Zen", | |
"license": "ISC", | |
"scripts": { | |
"start": "node_modules/.bin/webpack-dev-server --progress", | |
"build": "NODE_ENV=production node_modules/.bin/webpack -p --progress --colors" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var webpack = require('webpack'); | |
/* | |
* Default webpack configuration for development | |
*/ | |
var config = { | |
devtool: 'eval-source-map', | |
entry: [ __dirname + "/app/App.js", 'bootstrap-loader'], | |
output: { | |
path: __dirname + "/public", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import {render} from 'react-dom'; | |
import Searchkit from 'searchkit'; | |
require('bootstrap/dist/css/bootstrap.css'); | |
require('./styles/main.scss'); | |
import KanbanBoardContainer from './KanbanBoardContainer'; | |
render(<KanbanBoardContainer />, document.getElementById('root')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
client?cd17:59 ./~/searchkit/~/history/lib/createBrowserHistory.js | |
Module not found: Error: Cannot resolve module 'invariant' in /Users/alli/code/pro-react/node_modules/searchkit/node_modules/history/lib | |
resolve module invariant in /Users/alli/code/pro-react/node_modules/searchkit/node_modules/history/lib | |
looking for modules in /Users/alli/code/pro-react/node_modules/searchkit/node_modules | |
/Users/alli/code/pro-react/node_modules/searchkit/node_modules/invariant doesn't exist (module as directory) | |
resolve 'file' invariant in /Users/alli/code/pro-react/node_modules/searchkit/node_modules | |
resolve file | |
/Users/alli/code/pro-react/node_modules/searchkit/node_modules/invariant doesn't exist | |
/Users/alli/code/pro-react/node_modules/searchkit/node_modules/invariant.webpack.js doesn't exist | |
/Users/alli/code/pro-react/node_modules/searchkit/node_modules/invariant.web.js doesn't exist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
destination: public | |
source: src |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
├── _config.yml | |
├── _includes | |
│ ├── footer.html | |
│ ├── head.html | |
│ ├── header.html | |
│ ├── icon-github.html | |
│ ├── icon-github.svg | |
│ ├── icon-twitter.html | |
│ └── icon-twitter.svg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
// webpack folder's entry js - excluded from jekll's build process, since the compiled version is what we'll use in the DOM. | |
entry: "./webpack/entry.js", | |
output: { | |
// put the generated file in the assets folder so jekyll will grab it. | |
path: './javascript/', | |
filename: "bundle.js" | |
}, | |
// loaders for different libraries and, eventually, filetypes | |
module: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"dependencies": { | |
"webpack": "^1.13.1", | |
"babel-core": "^6.8.0", | |
"babel-loader": "^6.2.4", | |
"babel-preset-es2015": "^6.6.0", | |
"babel-preset-react": "^6.5.0", | |
"react": "^15.0.2", | |
"react-dom": "^15.0.2", | |
"react-addons-update": "^15.0.2" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ webpack | |
=> | |
Hash: 712af6bbeb12ca56b19e | |
Version: webpack 1.13.0 | |
Time: 3965ms | |
Asset Size Chunks Chunk Names | |
bundle.js 2.89 MB 0 [emitted] main | |
+ 800 hidden modules |
OlderNewer