deepv-code 1.0.234 → 1.0.235

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepv-code",
3
- "version": "1.0.234",
3
+ "version": "1.0.235",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },
@@ -75,7 +75,8 @@
75
75
  "typecheck": "npm run typecheck --workspaces --if-present",
76
76
  "preflight": "npm run clean && npm ci && npm run format && npm run lint:ci && npm run build && npm run typecheck && npm run test:ci",
77
77
  "prepare": "node scripts/prepare.js",
78
- "prepublishOnly": "cross-env BUILD_ENV=production npm run bundle:prod",
78
+ "prepublishOnly": "node scripts/prepare-publish.js && cross-env BUILD_ENV=production npm run bundle:prod",
79
+ "postpublish": "node scripts/restore-after-publish.js",
79
80
  "prepare:package": "node scripts/prepare-package.js",
80
81
  "postinstall": "node -e \"const fs = require('fs'); const path = 'bundle/fix-binary-permissions.js'; if (fs.existsSync(path)) { require('child_process').execSync('node ' + path + ' --all', {stdio: 'inherit'}); } else { console.log('⏭️ Skipping binary permissions fix (bundle not built yet)'); }\"",
81
82
  "release:version": "node scripts/version.js",