@abtasty/search 1.16.14 → 1.17.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/dist/form.js +1 -1
- package/dist/main.js +1 -1
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abtasty/search",
|
|
3
3
|
"description": "Search Widget",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.17.0",
|
|
5
5
|
"form": "dist/form.js",
|
|
6
6
|
"main": "dist/main.js",
|
|
7
7
|
"type": "module",
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"scripts": {
|
|
14
14
|
"cloneConfig": "scp ../rollup.default.config.js ./rollup.config.js && scp ../babel.default.config.json ./babel.config.json",
|
|
15
15
|
"publish:package": "yarn build && yarn npm publish --access public",
|
|
16
|
-
"publish:staging": "
|
|
16
|
+
"publish:staging": "yarn && yarn version prepatch && yarn && yarn run publish:package",
|
|
17
17
|
"publish:prod": "yarn && yarn version patch && yarn run publish:package",
|
|
18
|
-
"publish:staging:breaking:minor": "yarn &&
|
|
18
|
+
"publish:staging:breaking:minor": "yarn && yarn version preminor && yarn run publish:package",
|
|
19
19
|
"publish:breaking:minor": "yarn && yarn version minor && yarn run publish:package",
|
|
20
|
-
"publish:staging:breaking:major": "yarn &&
|
|
20
|
+
"publish:staging:breaking:major": "yarn && yarn version premajor && yarn run publish:package",
|
|
21
21
|
"publish:breaking:major": "yarn && yarn version major && yarn run publish:package",
|
|
22
22
|
"watch": "yarn && yarn run cloneConfig && rollup -c --watch",
|
|
23
23
|
"build": "yarn && yarn run cloneConfig && rollup -c"
|