Skip to content

Commit 22d6884

Browse files
authored
Merge pull request bigcommerce#12 from davidchin/bump_request_sender
CHECKOUT-4954: Upgrade request-sender version
2 parents f797680 + b19bb09 commit 22d6884

File tree

4 files changed

+65
-34
lines changed

4 files changed

+65
-34
lines changed

.circleci/config.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
aliases:
2+
- &node_executor
3+
executor:
4+
name: node/node
5+
node-version: "10"
6+
7+
version: 2.1
8+
9+
orbs:
10+
ci: bigcommerce/internal@volatile
11+
node: bigcommerce/internal-node@volatile
12+
13+
jobs:
14+
test:
15+
<<: *node_executor
16+
steps:
17+
- ci/pre-setup
18+
- node/npm-install
19+
- run:
20+
name: "Run unit tests"
21+
command: npm run test:series -- --coverage
22+
- store_artifacts:
23+
path: coverage
24+
destination: coverage
25+
26+
build:
27+
<<: *node_executor
28+
steps:
29+
- ci/pre-setup
30+
- node/npm-install
31+
- run:
32+
name: "Run linter"
33+
command: npm run lint
34+
- run:
35+
name: "Build files"
36+
command: npm run build
37+
38+
workflows:
39+
version: 2
40+
build:
41+
jobs:
42+
- ci/validate-commits
43+
- test
44+
- build

.travis.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

package-lock.json

Lines changed: 20 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"validate-commits": "validate-commits"
3333
},
3434
"dependencies": {
35-
"@bigcommerce/request-sender": "^0.3.0",
35+
"@bigcommerce/request-sender": "^1.1.0",
3636
"tslib": "^1.10.0"
3737
},
3838
"devDependencies": {

0 commit comments

Comments
 (0)