@runtime-type-inspector/plugin-parcel1
v4.0.3
Published
RuntimeTypeInspector.js plugin for Parcel v1
Downloads
15
Readme
Plugin for Parcel v1
For integrating this plugin follow this process:
npm install --save-dev @runtime-type-inspector/plugin-parcel1
Add this to your Parcel v1
build.js
file:
const bundler = new Bundler(entryFiles, options);
bundler.addAssetType('js', require.resolve('@runtime-type-inspector/plugin-parcel1'));
- Make sure to declare RTI as globals:
<script src="/node_modules/@runtime-type-inspector/runtime/index.cjs"></script>
<script>
Object.assign(window, rtiRuntime);
</script>
<script src="./build/out.js"></script>
This is kind of ugly, but Parcel v1 simply doesn't seem to support adding import declarations inside a plugin. If I will find a possibility, I will fix this.
Parcel also drops files that export nothing, but given the nature of JSDoc comments in combination of RTI, a comment is converted into registerTypedef(...)
for example. This means that typedefs in such files will simply be unregistered, causing runtime type errors (because it's an unknown type). Make sure to process such files individually and add them into the final out.js
.