omnius 1.0.192 → 1.0.194
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/index.js +2182 -1623
- package/dist/postinstall-daemon.cjs +61 -5
- package/npm-shrinkwrap.json +56 -254
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -158,8 +158,8 @@ pnpm -r build
|
|
|
158
158
|
node scripts/build-publish.mjs
|
|
159
159
|
cd publish
|
|
160
160
|
mkdir -p .npm-cache
|
|
161
|
-
NPM_CONFIG_CACHE=$(pwd)/.npm-cache npm pack
|
|
162
|
-
NPM_CONFIG_CACHE=$(pwd)/.npm-cache npm publish --access public
|
|
161
|
+
NPM_CONFIG_CACHE=$(pwd)/.npm-cache npm pack --prefer-online --cache-min=0 --registry https://registry.npmjs.org/
|
|
162
|
+
NPM_CONFIG_CACHE=$(pwd)/.npm-cache npm publish --access public --prefer-online --cache-min=0 --registry https://registry.npmjs.org/
|
|
163
163
|
```
|
|
164
164
|
|
|
165
165
|
Before publishing, verify `README.md`, `package.json`, `dist/index.js`, and `dist/launcher.cjs` are in the tarball, and that `package.json` includes `readmeFilename: "README.md"` plus a string `readme`.
|