@alliumcloud/configurator-service 1.5.0 → 1.5.1-dev.0
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 +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alliumcloud/configurator-service",
|
|
3
|
-
"version": "1.5.0",
|
|
3
|
+
"version": "1.5.1-dev.0",
|
|
4
4
|
"description": "Allium Configurator SDK - manages sketchfab 3D object , manages live stream, video and links and manages position,scale,rotation of all objects",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -27,6 +27,9 @@
|
|
|
27
27
|
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
28
28
|
"prepublishOnly": "npm run typecheck && npm run build",
|
|
29
29
|
"publish:npm": "npm publish",
|
|
30
|
+
"release:dev": "export BUILD_ENV=dev && npm version prerelease --preid=dev && npm run build && npm publish --tag dev && git push --follow-tags",
|
|
31
|
+
"release:testing": "export BUILD_ENV=testing && npm version prerelease --preid=testing && npm run build && npm publish --tag testing && git push --follow-tags",
|
|
32
|
+
"release": "export BUILD_ENV=prod && npm version patch && npm run build && npm publish --tag latest && git push --follow-tags",
|
|
30
33
|
"version:patch": "npm version patch",
|
|
31
34
|
"version:minor": "npm version minor",
|
|
32
35
|
"version:major": "npm version major",
|