Skip to content

Commit fb7f1d3

Browse files
authored
Merge pull request #2311 from blackflux/dev
[Gally]: master <- dev
2 parents 4340966 + 47100a1 commit fb7f1d3

File tree

7 files changed

+380
-397
lines changed

7 files changed

+380
-397
lines changed

.roboconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"packageName": "s3-cached",
99
"projectName": "s3-cached",
1010
"owner": "simlu",
11-
"nodeVersion": "12",
11+
"nodeVersion": "16",
1212
"ownerName": "Lukas Siemon",
1313
"mergeBot": "MrsFlux",
1414
"nccEnabled": false

CONFDOCS.md

+9
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ Manage various configuration files for an open source npm package on github.
111111
<td align="left" valign="top">
112112
<ul>
113113
<li><a href="#blackfluxrobo-config-plugin-var-ref-packagename">packageName</a></li>
114+
<li><a href="#blackfluxrobo-config-plugin-var-ref-nccexclude">nccExclude</a></li>
114115
<li><a href="#blackfluxrobo-config-plugin-var-ref-nccenabled">nccEnabled</a></li>
115116
<li><a href="#blackfluxrobo-config-plugin-var-ref-nodeversion">nodeVersion</a></li>
116117
<li><a href="#blackfluxrobo-config-plugin-var-ref-repokey">repoKey</a></li>
@@ -492,6 +493,7 @@ Manage package.json for npm package on github.
492493
</td>
493494
<td align="left" valign="top">
494495
<ul>
496+
<li><a href="#blackfluxrobo-config-plugin-var-ref-nccexclude">nccExclude</a></li>
495497
<li><a href="#blackfluxrobo-config-plugin-var-ref-nccenabled">nccEnabled</a></li>
496498
<li><a href="#blackfluxrobo-config-plugin-var-ref-nodeversion">nodeVersion</a></li>
497499
<li><a href="#blackfluxrobo-config-plugin-var-ref-repokey">repoKey</a></li>
@@ -529,6 +531,7 @@ _Updating <a href="#blackfluxrobo-config-plugin-target-ref-packagejson">package.
529531
</td>
530532
<td align="left" valign="top">
531533
<ul>
534+
<li><a href="#blackfluxrobo-config-plugin-var-ref-nccexclude">nccExclude</a></li>
532535
<li><a href="#blackfluxrobo-config-plugin-var-ref-nccenabled">nccEnabled</a></li>
533536
</ul>
534537
</td>
@@ -1554,6 +1557,12 @@ Very similar functionality to npm cli.
15541557
The name of the project as published to npm.
15551558
Note that for scoped packages the name can differ significantly from the repo name.
15561559

1560+
### <a name="blackfluxrobo-config-plugin-var-ref-nccexclude">nccExclude</a> : `array`
1561+
1562+
**Default**: ``
1563+
1564+
*Exclude packages from ncc compilation.*
1565+
15571566
### <a name="blackfluxrobo-config-plugin-var-ref-nccenabled">nccEnabled</a> : `boolean`
15581567

15591568
*Enable ncc for service.*

gardener.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable import/no-extraneous-dependencies */
2+
import process from 'process';
23
import gardener from 'js-gardener';
34
import fs from 'smart-fs';
4-
import process from 'process';
55

66
if (process.argv[1] === fs.filename(import.meta.url)) {
77
gardener({

package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -47,34 +47,34 @@
4747
},
4848
"homepage": "https://github.com/blackflux/s3-cached#readme",
4949
"dependencies": {
50-
"aws-sdk-wrap": "13.0.4",
50+
"aws-sdk-wrap": "13.0.6",
5151
"cache-manager": "3.4.4",
5252
"cache-manager-fs": "1.0.9",
5353
"lodash.defaults": "4.2.0",
5454
"lodash.get": "4.4.2"
5555
},
5656
"devDependencies": {
57-
"@aws-sdk/client-s3": "3.378.0",
58-
"@babel/core": "7.18.10",
59-
"@babel/eslint-parser": "7.18.9",
60-
"@babel/register": "7.18.9",
61-
"@blackflux/eslint-plugin-rules": "2.1.0",
62-
"@blackflux/robo-config-plugin": "9.0.6",
63-
"c8": "7.11.0",
57+
"@aws-sdk/client-s3": "3.385.0",
58+
"@babel/core": "7.22.9",
59+
"@babel/eslint-parser": "7.22.9",
60+
"@babel/register": "7.22.5",
61+
"@blackflux/eslint-plugin-rules": "2.2.0",
62+
"@blackflux/robo-config-plugin": "9.1.8",
63+
"c8": "8.0.1",
6464
"chai": "4.3.7",
65-
"eslint": "8.45.0",
65+
"eslint": "8.46.0",
6666
"eslint-config-airbnb-base": "15.0.0",
67-
"eslint-plugin-import": "2.27.5",
67+
"eslint-plugin-import": "2.28.0",
6868
"eslint-plugin-json": "3.1.0",
69-
"eslint-plugin-markdown": "3.0.0",
69+
"eslint-plugin-markdown": "3.0.1",
7070
"eslint-plugin-mocha": "10.1.0",
71-
"js-gardener": "5.0.0",
71+
"js-gardener": "5.0.1",
7272
"mocha": "10.2.0",
73-
"node-tdd": "3.5.2",
74-
"smart-fs": "3.0.1"
73+
"node-tdd": "3.5.4",
74+
"smart-fs": "3.0.2"
7575
},
7676
"engines": {
77-
"node": ">= 12"
77+
"node": ">= 16"
7878
},
7979
"files": [
8080
"lib"

test/hot.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function createListener() {
1919
},
2020
deleteProperty(target, key) {
2121
if (!(key in target)) {
22-
return false;
22+
return true;
2323
}
2424
// eslint-disable-next-line no-param-reassign
2525
delete target[key];

test/index.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import fs from 'smart-fs';
21
import path from 'path';
2+
import fs from 'smart-fs';
33
import { expect } from 'chai';
44
import { describe } from 'node-tdd';
55
import AwsSdkWrap from 'aws-sdk-wrap';

0 commit comments

Comments
 (0)