Skip to content

Commit 170ab95

Browse files
authored
chore: remove all dependencies (#645)
1 parent 9e5fe59 commit 170ab95

File tree

5 files changed

+64
-24
lines changed

5 files changed

+64
-24
lines changed

package.json

-4
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,6 @@
8484
"typescript": "^5.0.2",
8585
"vitest": "^1.6.0"
8686
},
87-
"dependencies": {
88-
"detect-indent": "^6.1.0",
89-
"strip-indent": "^3.0.0"
90-
},
9187
"peerDependencies": {
9288
"@babel/core": "^7.10.2",
9389
"coffeescript": "^2.5.1",

pnpm-lock.yaml

-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/modules/prepareContent.ts

+25-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
import stripIndent from 'strip-indent';
2-
3-
// todo: could use magig-string and generate some sourcemaps 🗺
1+
// todo: could use magic-string and generate some sourcemaps 🗺
42
export function prepareContent({
53
options,
64
content,
@@ -22,3 +20,27 @@ export function prepareContent({
2220

2321
return content;
2422
}
23+
24+
/** Get the shortest leading whitespace from lines in a string */
25+
function minIndent(s: string) {
26+
const match = s.match(/^[ \t]*(?=\S)/gm);
27+
28+
if (!match) {
29+
return 0;
30+
}
31+
32+
return match.reduce((r, a) => Math.min(r, a.length), Infinity);
33+
}
34+
35+
/** Strip leading whitespace from each line in a string */
36+
function stripIndent(s: string) {
37+
const indent = minIndent(s);
38+
39+
if (indent === 0) {
40+
return s;
41+
}
42+
43+
const regex = new RegExp(`^[ \\t]{${indent}}`, 'gm');
44+
45+
return s.replace(regex, '');
46+
}

src/transformers/pug.ts

+39-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import detectIndent from 'detect-indent';
21
import pug from 'pug';
32

43
import type { Transformer, Options } from '../types';
@@ -67,8 +66,8 @@ const transformer: Transformer<Options.Pug> = async ({
6766
...options,
6867
};
6968

70-
const { type: indentationType } = detectIndent(content);
71-
const input = `${GET_MIXINS(indentationType ?? 'space')}\n${content}`;
69+
const spaces = guessIndentString(content);
70+
const input = `${GET_MIXINS(spaces ? 'space' : 'tab')}\n${content}`;
7271
const compiled = pug.compile(
7372
input,
7473
pugOptions,
@@ -94,4 +93,41 @@ const transformer: Transformer<Options.Pug> = async ({
9493
};
9594
};
9695

96+
// Sourced from `golden-fleece`
97+
// https://github.com/Rich-Harris/golden-fleece/blob/f2446f331640f325e13609ed99b74b6a45e755c2/src/patch.ts#L302
98+
function guessIndentString(str: string): number | undefined {
99+
const lines = str.split('\n');
100+
101+
let tabs = 0;
102+
let spaces = 0;
103+
let minSpaces = 8;
104+
105+
lines.forEach((line) => {
106+
const match = /^(?: +|\t+)/.exec(line);
107+
108+
if (!match) return;
109+
110+
const [whitespace] = match;
111+
112+
if (whitespace.length === line.length) return;
113+
114+
if (whitespace[0] === '\t') {
115+
tabs += 1;
116+
} else {
117+
spaces += 1;
118+
if (whitespace.length > 1 && whitespace.length < minSpaces) {
119+
minSpaces = whitespace.length;
120+
}
121+
}
122+
});
123+
124+
if (spaces > tabs) {
125+
let result = '';
126+
127+
while (minSpaces--) result += ' ';
128+
129+
return result.length;
130+
}
131+
}
132+
97133
export { transformer };

src/types/modules.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
declare module 'svelte/package.json';
22
declare module 'coffeescript';
3-
declare module 'strip-indent';
43
declare module 'postcss-load-config';
54
declare module 'less';
65
declare module 'sorcery';

0 commit comments

Comments
 (0)