1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-07-11 02:21:32 +00:00
Files
.cargo
crates
examples
add
asm.js
src
.gitignore
Cargo.toml
README.md
build.sh
index.html
index.js
package.json
webpack.config.js
char
closures
comments
console_log
dom
hello_world
import_js
julia_set
math
no_modules
performance
smorgasboard
wasm-in-wasm
README.md
guide
releases
src
tests
.appveyor.yml
.eslintignore
.eslintrc
.gitattributes
.gitignore
.travis.yml
CHANGELOG.md
CONTRIBUTING.md
Cargo.toml
LICENSE-APACHE
LICENSE-MIT
README.md
package-lock.json
package.json
yarn.lock
wasm-bindgen/examples/asm.js/webpack.config.js
Frank Hassanabad 6561fba947 Applied eslint from main .eslintrc to examples ()
* Changed eslintrc to be JSON file (Most projects use JSON version)
  * Added .eslintignore to ingore node_modules from subdirectories such as examples
  * Ran eslint --fix examples to fix all examples
  * Added npm script for running eslint against examples
  * Added npm script for running eslint against generated *out* code
  * Hooked npm scripts into travis ci to prevent examples from becoming inconsistent with future PR's
2018-07-08 01:02:10 -05:00

11 lines
200 B
JavaScript

const path = require('path');
module.exports = {
entry: './index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
},
mode: 'development'
};