Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 015279e

Browse files
authored
Update slim.js
1 parent 49ea2d0 commit 015279e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lib/slim.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ const glob = require('glob-all');
33
const fse = require('fs-extra');
44

55
const getStripMode = options => {
6-
if (options.slim === false || options.slim === 'false') {
6+
if (
7+
options.strip === false ||
8+
options.strip === 'false' ||
9+
options.slim === false ||
10+
options.slim === 'false'
11+
) {
712
return 'skip';
813
} else if (options.dockerizePip) {
914
return 'docker';

0 commit comments

Comments
 (0)