remove exports field to try and prevent vite bug resolving asset url

downside is that we can't export cjs version anymore
This commit is contained in:
Bruno Windels 2022-01-12 17:14:52 +01:00
parent a5eb386f48
commit d7290bf750
2 changed files with 19 additions and 11 deletions

View file

@ -2,14 +2,7 @@
"name": "hydrogen-view-sdk",
"description": "Embeddable matrix client library, including view components",
"version": "0.0.2",
"main": "./hydrogen.cjs.js",
"exports": {
".": {
"import": "./hydrogen.es.js",
"require": "./hydrogen.cjs.js"
},
"./paths/vite": "./paths/vite.js",
"./style.css": "./style.css"
},
"types": "types/lib.d.ts"
"main": "./hydrogen.es.js",
"type": "module"
}

19
scripts/sdk/create-manifest.js Executable file → Normal file
View file

@ -1,7 +1,22 @@
#!/usr/bin/env node
const fs = require("fs");
const appManifest = require("../../package.json")
const baseSDKManifest = require("./base-manifest.json")
const appManifest = require("../../package.json");
const baseSDKManifest = require("./base-manifest.json");
/*
need to leave exports out of base-manifest.json because of #vite-bug,
with the downside that we can't support environments that support
both esm and commonjs modules, so we pick just esm.
```
"exports": {
".": {
"import": "./hydrogen.es.js",
"require": "./hydrogen.cjs.js"
},
"./paths/vite": "./paths/vite.js",
"./style.css": "./style.css"
},
```
*/
const mergeOptions = require('merge-options');
const manifestExtension = {