Skip to content

Commit

Permalink
#23 update reference for source->src
Browse files Browse the repository at this point in the history
  • Loading branch information
motorina0 committed Apr 7, 2021
1 parent 7d56a80 commit da5aca4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[source/**.js]
[src/**.js]
quote_type = double
indent_style = space
indent_size = 2
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ The extension implements the WebLN standard. The goal is to write a miminmal int
The extension can connect to different node implementation and supports custodial and non-custodial setups.
E.g.:

- [remote LND](https://github.com/bumi/lightning-browser-extension/blob/master/source/lib/connectors/lnd.js)
- [Local native companion apps](https://github.com/bumi/lightning-browser-extension/blob/master/source/lib/connectors/native.js) (e.g. zaphq or native wallet apps)
- [LNBits](https://github.com/bumi/lightning-browser-extension/blob/master/source/lib/connectors/lnbits.js)
- [LNDHub](https://github.com/bumi/lightning-browser-extension/blob/master/source/lib/connectors/lndhub.js)
- [remote LND](https://github.com/bumi/lightning-browser-extension/blob/master/src/lib/connectors/lnd.js)
- [Local native companion apps](https://github.com/bumi/lightning-browser-extension/blob/master/src/lib/connectors/native.js) (e.g. zaphq or native wallet apps)
- [LNBits](https://github.com/bumi/lightning-browser-extension/blob/master/src/lib/connectors/lnbits.js)
- [LNDHub](https://github.com/bumi/lightning-browser-extension/blob/master/src/lib/connectors/lndhub.js)
- ...

## Architecture idea
Expand Down
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const WextManifestWebpackPlugin = require("wext-manifest-webpack-plugin");
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");

const viewsPath = path.join(__dirname, "views");
const sourcePath = path.join(__dirname, "source");
const sourcePath = path.join(__dirname, "src");
const destPath = path.join(__dirname, "extension");
const nodeEnv = process.env.NODE_ENV || "development";
const targetBrowser = process.env.TARGET_BROWSER;
Expand Down Expand Up @@ -193,7 +193,7 @@ module.exports = {
new MiniCssExtractPlugin({ filename: "css/[name].css" }),
// copy static assets
new CopyWebpackPlugin({
patterns: [{ from: "source/assets", to: "assets" }],
patterns: [{ from: "src/assets", to: "assets" }],
}),
// plugin to enable browser reloading in development mode
extensionReloaderPlugin,
Expand Down

0 comments on commit da5aca4

Please sign in to comment.