Skip to content

Commit

Permalink
postbeta
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Jan 23, 2024
1 parent d752298 commit 5e7b203
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scrypted/server",
"version": "0.91.0",
"version": "0.91.1",
"description": "",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11",
Expand Down Expand Up @@ -62,7 +62,7 @@
"build": "tsc --outDir dist",
"postbuild": "node test/check-build-output.js",
"beta": "npm publish --tag beta",
"postbeta": "npm version minor && git add package.json && npm run build && git commit -m postbeta",
"postbeta": "npm version patch && git add package.json && npm run build && git commit -m postbeta",
"release": "npm publish",
"prepublishOnly": "npm run build",
"postrelease": "git tag v$npm_package_version && git push origin v$npm_package_version && npm version minor && git add package.json && git commit -m postrelease",
Expand Down
1 change: 1 addition & 0 deletions server/src/scrypted-plugin-main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { RpcMessage } from "./rpc";

function start(mainFilename: string) {
const pluginId = process.argv[3];
console.log('starting plugin', pluginId);
module.paths.push(getPluginNodePath(pluginId));

if (process.argv[2] === 'child-thread') {
Expand Down

0 comments on commit 5e7b203

Please sign in to comment.