@abtasty/tooltip 2.0.13-0 → 2.0.13

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.
Files changed (2) hide show
  1. package/dist/form.js +1 -1
  2. package/package.json +7 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@abtasty/tooltip",
3
3
  "description": "Widget for AB Tasty",
4
- "version": "2.0.13-0",
4
+ "version": "2.0.13",
5
5
  "form": "dist/form.js",
6
6
  "main": "dist/main.js",
7
7
  "type": "module",
@@ -12,6 +12,12 @@
12
12
  "license": "MIT",
13
13
  "scripts": {
14
14
  "cloneConfig": "scp ../rollup.default.config.js ./rollup.config.js && scp ../babel.default.config.json ./babel.config.json",
15
+ "publish:staging": "npm version prerelease && yarn && yarn build && npm publish",
16
+ "publish:prod": "npm version patch && yarn && yarn build && npm publish",
17
+ "publish:staging:breaking:minor": "npm version preminor && yarn && yarn build && npm publish",
18
+ "publish:breaking:minor": "npm version minor && yarn && yarn build && npm publish",
19
+ "publish:staging:breaking:major": "npm version premajor && yarn && yarn build && npm publish",
20
+ "publish:breaking:major": "npm version major && yarn && yarn build && npm publish",
15
21
  "watch": "yarn run cloneConfig && rollup -c --watch",
16
22
  "build": "yarn run cloneConfig && rollup -c"
17
23
  },