Skip to content

Commit c99bfed

Browse files
committed
Remove fs-extra package
1 parent 7798cad commit c99bfed

File tree

2 files changed

+37
-68
lines changed

2 files changed

+37
-68
lines changed

package.json

Lines changed: 37 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,39 @@
11
{
2-
"name": "twig-unused-css-finder",
3-
"version": "0.1.0",
4-
"description": "A tool to find unused CSS in Twig templates",
5-
"main": "dist/index.js",
6-
"types": "dist/index.d.ts",
7-
"scripts": {
8-
"build": "tsc && rollup -c",
9-
"prepublishOnly": "npm run build",
10-
"start": "node dist/bundle.js",
11-
"dev": "rollup -c -w",
12-
"test": "echo \"Error: no test specified\" && exit 1"
13-
},
14-
"keywords": ["twig", "css", "unused", "finder"],
15-
"author": "Yilmaz Oktav",
16-
"license": "MIT",
17-
"repository": {
18-
"type": "git",
19-
"url": "https://github.com/yoktav/twig-unused-css-finder.git"
20-
},
21-
"engines": {
22-
"node": ">=14.0.0"
23-
},
24-
"devDependencies": {
25-
"@rollup/plugin-commonjs": "^22.0.0",
26-
"@rollup/plugin-node-resolve": "^13.3.0",
27-
"@rollup/plugin-typescript": "^8.3.2",
28-
"@types/node": "^14.14.31",
29-
"rollup": "^2.75.0",
30-
"tslib": "^2.4.0",
31-
"typescript": "^4.2.2"
32-
},
33-
"dependencies": {
34-
"fs-extra": "^9.1.0"
35-
}
2+
"name": "twig-unused-css-finder",
3+
"version": "0.1.0",
4+
"description": "A tool to find unused CSS in Twig templates",
5+
"main": "dist/index.js",
6+
"types": "dist/index.d.ts",
7+
"scripts": {
8+
"build": "tsc && rollup -c",
9+
"prepublishOnly": "npm run build",
10+
"start": "node dist/bundle.js",
11+
"dev": "rollup -c -w",
12+
"test": "echo \"Error: no test specified\" && exit 1"
13+
},
14+
"keywords": [
15+
"twig",
16+
"css",
17+
"unused",
18+
"finder"
19+
],
20+
"author": "Yilmaz Oktav",
21+
"license": "MIT",
22+
"repository": {
23+
"type": "git",
24+
"url": "https://github.com/yoktav/twig-unused-css-finder.git"
25+
},
26+
"engines": {
27+
"node": ">=14.0.0"
28+
},
29+
"devDependencies": {
30+
"@rollup/plugin-commonjs": "^22.0.0",
31+
"@rollup/plugin-node-resolve": "^13.3.0",
32+
"@rollup/plugin-typescript": "^8.3.2",
33+
"@types/node": "^14.14.31",
34+
"rollup": "^2.75.0",
35+
"tslib": "^2.4.0",
36+
"typescript": "^4.2.2"
37+
},
38+
"dependencies": {}
3639
}

yarn.lock

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,6 @@
7373
dependencies:
7474
"@types/node" "*"
7575

76-
at-least-node@^1.0.0:
77-
version "1.0.0"
78-
resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
79-
integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
80-
8176
balanced-match@^1.0.0:
8277
version "1.0.2"
8378
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
@@ -121,16 +116,6 @@ estree-walker@^2.0.1:
121116
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac"
122117
integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
123118

124-
fs-extra@^9.1.0:
125-
version "9.1.0"
126-
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d"
127-
integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==
128-
dependencies:
129-
at-least-node "^1.0.0"
130-
graceful-fs "^4.2.0"
131-
jsonfile "^6.0.1"
132-
universalify "^2.0.0"
133-
134119
fs.realpath@^1.0.0:
135120
version "1.0.0"
136121
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
@@ -158,11 +143,6 @@ glob@^7.1.6:
158143
once "^1.3.0"
159144
path-is-absolute "^1.0.0"
160145

161-
graceful-fs@^4.1.6, graceful-fs@^4.2.0:
162-
version "4.2.11"
163-
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
164-
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
165-
166146
hasown@^2.0.2:
167147
version "2.0.2"
168148
resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003"
@@ -209,15 +189,6 @@ is-reference@^1.2.1:
209189
dependencies:
210190
"@types/estree" "*"
211191

212-
jsonfile@^6.0.1:
213-
version "6.1.0"
214-
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae"
215-
integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==
216-
dependencies:
217-
universalify "^2.0.0"
218-
optionalDependencies:
219-
graceful-fs "^4.1.6"
220-
221192
magic-string@^0.25.7:
222193
version "0.25.9"
223194
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c"
@@ -295,11 +266,6 @@ undici-types@~6.19.2:
295266
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02"
296267
integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==
297268

298-
universalify@^2.0.0:
299-
version "2.0.1"
300-
resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d"
301-
integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==
302-
303269
wrappy@1:
304270
version "1.0.2"
305271
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"

0 commit comments

Comments
 (0)