Skip to content

Commit 0541664

Browse files
committed
feat: 🎸 fix build
1 parent 33167da commit 0541664

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.travis.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,9 @@ install:
1313

1414
jobs:
1515
include:
16-
- stage: build
17-
node_js: lts/*
18-
script: npm run build
1916
- stage: release
2017
node_js: lts/*
21-
script: skip
18+
script: npm run build
2219
deploy:
2320
provider: script
2421
skip_cleanup: true

dist/index.esm.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ const request = ({ url, json, params, body, ...rest } = { method: 'GET', json: t
4545
};
4646
const post = (url, body, options = {}) => request({ url, body, ...options, ...{ method: HttpVerb.POST } });
4747

48-
const environment = Environment[(process.env.PAYU_ENVIRONMENT ? process.env.PAYU_ENVIRONMENT : 'sandbox').toUpperCase()];
48+
const environment = Environment[(process.env.PAYU_ENVIRONMENT ? process.env.PAYU_ENVIRONMENT : 'sandbox').toUpperCase()];
49+
50+
console.log('test');
4951

5052
var authorize = async ({ clientId, clientSecret, grantType }) => {
5153
try {

dist/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ const request = ({ url: url$1, json, params, body, ...rest } = { method: 'GET',
5151
};
5252
const post = (url, body, options = {}) => request({ url, body, ...options, ...{ method: HttpVerb.POST } });
5353

54-
const environment = Environment[(process.env.PAYU_ENVIRONMENT ? process.env.PAYU_ENVIRONMENT : 'sandbox').toUpperCase()];
54+
const environment = Environment[(process.env.PAYU_ENVIRONMENT ? process.env.PAYU_ENVIRONMENT : 'sandbox').toUpperCase()];
55+
56+
console.log('test');
5557

5658
var authorize = async ({ clientId, clientSecret, grantType }) => {
5759
try {

0 commit comments

Comments
 (0)