Skip to content
Snippets Groups Projects

Typescript & toolset version update

Merged Bartek Wrona requested to merge bw_toolset_upgrade into develop
1 file
+ 7
3
Compare changes
  • Side-by-side
  • Inline
+ 130
43
@@ -2,59 +2,87 @@ import dts from 'rollup-plugin-dts';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import replace from '@rollup/plugin-replace';
import alias from '@rollup/plugin-alias';
import terser from '@rollup/plugin-terser';
import copy from 'rollup-plugin-copy';
const commonConfiguration = packEntire => ([
export default [
{
input: `wasm/dist/lib/index.js`,
input: 'wasm/lib/build_wasm/wax.web.js',
output: {
format: 'es',
name: 'wax',
file: `wasm/dist/bundle/index${packEntire ? '-full' : ''}.js`
file: 'wasm/dist/bundle/wax.web.js'
},
plugins: [
alias({
entries: packEntire ? [
{ find: '@hiveio/beekeeper', replacement: "@hiveio/beekeeper/web" }
] : []
replace({
delimiters: ['', ''],
values: {
'wax.web.wasm': 'wax.common.wasm',
// Remove unused `process` from code to prevent bundlers to include polyfills when not required
'process': null,
'process.versions': null,
'process.versions.node': null
},
preventAssignment: true
}),
terser({
format: {
inline_script: false,
comments: false,
max_line_len: 100
}
})
]
},
{
input: 'wasm/lib/build_wasm/wax.node.js',
output: {
format: 'es',
file: 'wasm/dist/bundle/wax.node.js'
},
plugins: [
copy({
targets: [{ src: ['wasm/lib/build_wasm/wax.common.wasm'], dest: 'wasm/dist/bundle' }]
}),
replace({
delimiters: ['', ''],
values: {
// Generated Emscripten WASM code contains fs, which is not actually used by our code, so remove it to prevent client bundler errors:
'fs.readFileSync(filename,binary?undefined:"utf8")': null,
'fs.readFile(filename,binary?undefined:"utf8",(err,data)=>{if(err)onerror(err);else onload(binary?data.buffer:data)})': null,
'fs.readSync(fd,buf)': '0', // fallback - readSync returns the number of bytesRead
// Instead of fs we need crypto module in Node.js environment later for SSL initRandomDevice code - ensure proper module is imported:
'var fs=require("fs")': 'var node_crypto=await import("crypto")',
'require("crypto")': 'node_crypto',
// 'module' dependency is redundant in our environment - use 'await import' instead:
'const{createRequire:createRequire}=await import("module");': '',
'var require=createRequire(import.meta.url);': '',
'createRequire(import.meta.url);': '',
'var nodePath=require("path")': 'var nodePath=await import("path")',
// new URL("./") throws - use import.meta.url instead:
'require("url").fileURLToPath(new URL("./",import.meta.url))': 'import.meta.url',
'wax.node.wasm': 'wax.common.wasm'
},
preventAssignment: true
}),
terser({
format: {
inline_script: false,
comments: false,
max_line_len: 100
}
})
]
},
// Generate .JS bundles for each environment
{
input: 'wasm/dist/lib/detailed/index.js',
output: {
format: 'es',
file: 'wasm/dist/bundle/detailed/index.js'
},
plugins: [
replace({
delimiters: ['', ''],
values: {
// Make sure we do not include `process` in the code:
'process': null,
'process.env': null,
'process.env.REFLECT_METADATA_USE_MAP_POLYFILL': null, // Bundled dependency - reflect-metadata - uses this - we do not need it
// Hardcode package name and version for later use in the code:
'process.env.npm_package_name': `"${process.env.npm_package_name}"`,
'process.env.npm_package_version': `"${process.env.npm_package_version}"`,
// WASM requires process.argv[1] argument to be set. We can mock it in web browser environment:
'process.argv': '(typeof process=="object"&&typeof process.argv=="object"?process.argv:["",""])',
// Keeping process.env in the code will cause errors in the browser environment - remove it:
'process.env': null
'process.env.npm_package_version': `"${process.env.npm_package_version}"`
},
preventAssignment: true
}),
nodeResolve({
nodeResolve({ // This will bundle all of our not crucial sub-dependencies, like class-validator and class-transformer
preferBuiltins: false,
browser: true,
modulePaths: [
'wasm/dist/lib'
],
resolveOnly: packEntire ? [] : [
'build_wasm'
]
browser: false
}),
commonjs(),
terser({
@@ -65,18 +93,77 @@ const commonConfiguration = packEntire => ([
}
})
]
}, {
},
{
input: 'wasm/dist/lib/index.js',
output: {
format: 'es',
file: 'wasm/dist/bundle/web.js'
},
external: [
'./wax.web.js',
'./detailed/index.js'
],
plugins: [
replace({
delimiters: ['', ''],
values: {
'wasm/lib/wax_module.js': './wax.web.js'
},
preventAssignment: true
})
]
},
{
input: 'wasm/dist/lib/index.js',
output: {
format: 'es',
file: 'wasm/dist/bundle/node.js'
},
external: [
'./wax.node.js',
'./detailed/index.js'
],
plugins: [
replace({
delimiters: ['', ''],
values: {
'wasm/lib/wax_module.js': './wax.node.js'
},
preventAssignment: true
})
]
},
{
input: 'wasm/dist/lib/vite.js',
output: {
format: 'es',
file: 'wasm/dist/bundle/vite.js'
},
external: [
'./wax.web.js',
'./detailed/index.js',
'./wax.common.wasm?url'
],
plugins: [
replace({
delimiters: ['', ''],
values: {
'wasm/lib/wax_module.js': './wax.web.js',
'wax.common.wasm?url': './wax.common.wasm?url'
},
preventAssignment: true
})
]
},
// Type declarations are common for all environments
{
input: `wasm/dist/lib/index.d.ts`,
output: [
{ file: `wasm/dist/bundle/index${packEntire ? '-full' : ''}.d.ts`, format: "es" }
{ file: `wasm/dist/bundle/index.d.ts`, format: "es" }
],
plugins: [
dts()
]
}
]);
export default [
...commonConfiguration(false),
...commonConfiguration(true)
];
Loading