We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebe5ce9 commit 36c1c07Copy full SHA for 36c1c07
esm/index.js
@@ -16,7 +16,6 @@ export function uniWebviewJS() {
16
if (config.env.VITE_SSR === 'true' || config.env.VITE_SSR === true) {
17
isSSR = true;
18
}
19
- console.log(config);
20
21
};
22
scripts/release.js
@@ -1,5 +1,5 @@
1
-const packageJson = require('../package.json');
2
-const shell = require('shelljs');
+import shell from 'shelljs';
+import packageJson from '../package.json' assert { type: "json" };
3
4
shell.exec('npm run tsc');
5
shell.exec('npm run build');
0 commit comments