UNPKG
vtex-deploy
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
Deploy assets to vtex
github.com/0000marcell/vtex-deploy
0000marcell/vtex-deploy
vtex-deploy
/
examples
/
save-layout-example.js
14 lines
(10 loc)
•
272 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const
saveLayout =
require
(
'../src/save-layout'
);
const
getAuthCookie =
require
(
'../src/get-auth-cookie'
);
async
function
run
(
) {
const
authCookie =
await
getAuthCookie
()
saveLayout
({
authCookie
: authCookie,
store
:
'modaoriginal'
}); }
run
()