Fix CI condition in prepare script for Node.js v20

This commit is contained in:
bjoluc 2024-07-18 00:36:15 +02:00
parent 2ee62c0cdf
commit c499900e85
No known key found for this signature in database

View File

@ -11,7 +11,7 @@
"build:archive": "gulp createCoreDistArchive",
"update-unpkg-links": "gulp updateUnpkgLinks",
"update-plugin-versions": "gulp updatePluginVersions",
"prepare": "node -e 'process.exit(!process.env.CI)' || (husky install && npm run build)",
"prepare": "node -e 'process.exit(+!process.env.CI)' || (husky install && npm run build)",
"tsc": "turbo tsc",
"changeset": "changeset",
"changeset:version": "changeset version && npm install && npm run update-unpkg-links && npm run update-plugin-versions",