1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-06 18:18:53 +08:00

License file is missing in the build #21

This commit is contained in:
lana-k
2020-12-16 22:38:05 +01:00
parent 5dbffe0c56
commit c2a155c561

View File

@@ -8,7 +8,8 @@ module.exports = {
// This wasm file will be fetched dynamically when we initialize sql.js // This wasm file will be fetched dynamically when we initialize sql.js
// It is important that we do not change its name, and that it is in the same folder as the js // It is important that we do not change its name, and that it is in the same folder as the js
{ from: 'node_modules/sql.js/dist/sql-wasm.wasm', to: 'js/' }, { from: 'node_modules/sql.js/dist/sql-wasm.wasm', to: 'js/' },
{ from: 'node_modules/sql.js/dist/worker.sql-wasm.js', to: 'js/' } { from: 'node_modules/sql.js/dist/worker.sql-wasm.js', to: 'js/' },
{ from: 'LICENSE', to: './' }
]) ])
] ]
} }