mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-10-07 22:57:07 +00:00
author Mark Henderson <mark@mrh.io> 1598051057 -0400
committer Mark Henderson <mark@mrh.io> 1598229380 -0400
parent 32cc9a9b00
author Mark Henderson <mark@mrh.io> 1598051057 -0400
committer Mark Henderson <mark@mrh.io> 1598229291 -0400
package updates and ipfs repo migration
validate-maintainers and orbit-db-test-utils
moving from 3 tabs to 2
wait workaround
wait 1000
standard --fix
redoing the replication test changes for some reason
validate-maintainers and orbit-db-test-utils
moving from 3 tabs to 2
wait workaround
wait 1000
standard --fix
fix create-open tests
fixing eventlog tests
fixing feed tests
fixing kvstore tests
fixing set identity tests
skipping replication tests for now
repo path based on API variable
js-ipfs.zip
go-ipfs.zip
skipping replicate tests as well
repo path based on API variable
js-ipfs.zip
go-ipfs.zip
package-lock
finalizing rebase
39 lines
759 B
JavaScript
39 lines
759 B
JavaScript
'use strict'
|
|
|
|
const path = require('path')
|
|
const webpack = require('webpack')
|
|
|
|
module.exports = {
|
|
entry: './examples/browser/browser-webpack-example/index.js',
|
|
output: {
|
|
filename: '../examples/browser/browser-webpack-example/bundle.js'
|
|
},
|
|
target: 'web',
|
|
devtool: 'none',
|
|
node: {
|
|
Buffer: true,
|
|
mkdirp: 'empty',
|
|
fs: 'empty'
|
|
},
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
'process.env': {
|
|
NODE_ENV: JSON.stringify(process.env.NODE_ENV)
|
|
}
|
|
})
|
|
],
|
|
resolve: {
|
|
modules: [
|
|
'node_modules',
|
|
path.resolve(__dirname, '../node_modules')
|
|
]
|
|
},
|
|
resolveLoader: {
|
|
modules: [
|
|
'node_modules',
|
|
path.resolve(__dirname, '../node_modules')
|
|
],
|
|
moduleExtensions: ['-loader']
|
|
}
|
|
}
|