Skip to content

Commit 79f1b2d

Browse files
v1.2.626
[Bot] push changes from Files.com
1 parent 5b20d23 commit 79f1b2d

7 files changed

Lines changed: 13 additions & 11 deletions

File tree

_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.625
1+
1.2.626

build.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env bash
22

3-
rm -f ~/.npmrc && rm -f ~/.yarnrc
4-
yarn && yarn build
3+
rm -f ~/.npmrc
4+
rm -f ~/.yarnrc
5+
npm install --min-release-age=14 && npm run build

lib/Files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var apiKey;
1212
var baseUrl = 'https://app.files.com';
1313
var sessionId = null;
1414
var language = null;
15-
var version = '1.2.625';
15+
var version = '1.2.626';
1616
var userAgent = "Files.com JavaScript SDK v".concat(version);
1717
var logLevel = _Logger.LogLevel.INFO;
1818
var debugRequest = false;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "files.com",
3-
"version": "1.2.625",
3+
"version": "1.2.626",
44
"description": "Files.com SDK for JavaScript",
55
"keywords": [
66
"files.com",

src/Files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let apiKey
66
let baseUrl = 'https://app.files.com'
77
let sessionId = null
88
let language = null
9-
const version = '1.2.625'
9+
const version = '1.2.626'
1010
let userAgent = `Files.com JavaScript SDK v${version}`
1111

1212
let logLevel = LogLevel.INFO

test.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
#!/usr/bin/env bash
22

3-
rm -f ~/.npmrc && rm -f ~/.yarnrc
3+
rm -f ~/.npmrc
4+
rm -f ~/.yarnrc
45

56
# Execute running tests from same directory as current script
67
cd "$(dirname "$0")"
78

89
# Install dependencies
9-
npm install
10+
npm install --min-release-age=14
1011
npm run lint && \
1112
npm run build && \
12-
npm run test
13+
npm run test

test/integration/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
//
1919
// Next, in the ../../../ directory, build the SDK:
2020
//
21-
// npm install
21+
// npm install --min-release-age=14
2222
// npm run build
2323
//
2424
// Then, in the ../ directory, build the test suite:
2525
//
26-
// npm install
26+
// npm install --min-release-age=14
2727
// npm run build
2828
//
2929
// Finally, execute the current file:

0 commit comments

Comments
 (0)