@tiendanube/nexo 0.2.3 → 0.3.0-rc.2
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/actions/actions.d.ts +5 -0
- package/actions/actions.js +2 -1
- package/package.json +7 -4
package/actions/actions.d.ts
CHANGED
package/actions/actions.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ACTION_NAVIGATE_HEADER = exports.ACTION_NAVIGATE_GOTO_OLD_ADMIN = exports.ACTION_UTILS_COPY_TO_CLIPBOARD = exports.ACTION_STORE_INFO = exports.ACTION_DEVICE = exports.ACTION_AUTH_SESSION_TOKEN = exports.ACTION_NAVIGATE_SYNC = exports.ACTION_NAVIGATE_PATHNAME = exports.ACTION_NAVIGATE_GOTO = exports.ACTION_NAVIGATE_BACK = exports.ACTION_NAVIGATE_EXIT = exports.ACTION_CONNECTED = exports.ACTION_READY = void 0;
|
|
3
|
+
exports.ACTION_UTILS_SEND_ERROR = exports.ACTION_NAVIGATE_HEADER = exports.ACTION_NAVIGATE_GOTO_OLD_ADMIN = exports.ACTION_UTILS_COPY_TO_CLIPBOARD = exports.ACTION_STORE_INFO = exports.ACTION_DEVICE = exports.ACTION_AUTH_SESSION_TOKEN = exports.ACTION_NAVIGATE_SYNC = exports.ACTION_NAVIGATE_PATHNAME = exports.ACTION_NAVIGATE_GOTO = exports.ACTION_NAVIGATE_BACK = exports.ACTION_NAVIGATE_EXIT = exports.ACTION_CONNECTED = exports.ACTION_READY = void 0;
|
|
4
4
|
exports.ACTION_READY = 'app/ready';
|
|
5
5
|
exports.ACTION_CONNECTED = 'app/connected';
|
|
6
6
|
exports.ACTION_NAVIGATE_EXIT = 'app/navigate/exit';
|
|
@@ -14,3 +14,4 @@ exports.ACTION_STORE_INFO = 'app/store/info';
|
|
|
14
14
|
exports.ACTION_UTILS_COPY_TO_CLIPBOARD = 'app/utils/copyToClipboard';
|
|
15
15
|
exports.ACTION_NAVIGATE_GOTO_OLD_ADMIN = 'app/navigate/goToOldAdmin';
|
|
16
16
|
exports.ACTION_NAVIGATE_HEADER = 'app/navigate/header';
|
|
17
|
+
exports.ACTION_UTILS_SEND_ERROR = 'app/utils/sendError';
|
package/package.json
CHANGED
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiendanube/nexo",
|
|
3
|
-
"version": "0.2
|
|
3
|
+
"version": "0.3.0-rc.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "tsc",
|
|
9
|
-
"publish:release": "yarn bump:stable && yarn build && yarn npm publish --tolerate-republish --access public",
|
|
9
|
+
"publish:release": "yarn bump:check && yarn bump:stable && yarn build && yarn npm publish --tolerate-republish --access public",
|
|
10
|
+
"publish:next": "yarn bump:check && yarn bump:next && npm run build && npm publish --tolerate-republish --access public --tag next",
|
|
10
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
11
12
|
"lint": "eslint .",
|
|
12
13
|
"lint:fix": "eslint --fix",
|
|
13
14
|
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
|
|
14
15
|
"bump:stable": "yarn version apply --all",
|
|
16
|
+
"bump:next": "yarn version apply --all --prerelease",
|
|
15
17
|
"bump:check": "yarn version check"
|
|
16
18
|
},
|
|
17
19
|
"repository": {
|
|
@@ -38,5 +40,6 @@
|
|
|
38
40
|
"node": ">=16.x <=18.x",
|
|
39
41
|
"yarn": ">=3.4.1"
|
|
40
42
|
},
|
|
41
|
-
"packageManager": "yarn@3.4.1"
|
|
42
|
-
|
|
43
|
+
"packageManager": "yarn@3.4.1",
|
|
44
|
+
"stableVersion": "0.2.4"
|
|
45
|
+
}
|