Skip to content

Commit 1695691

Browse files
committed
use internal fs
1 parent 6dca3d2 commit 1695691

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22
(function (module) {
3-
const fs = require('graceful-fs');
3+
const fs = require('fs');
44

55
module.exports = function (path, name) {
66
const exports = {};

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-sass-export",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "lightweight extension that allows you to export an encoded Sass variables (map, list, etc) into an external JSON file",
55
"main": "index.js",
66
"scripts": {
@@ -13,10 +13,11 @@
1313
],
1414
"author": "punkundead",
1515
"license": "BSD-2-Clause",
16-
"dependencies": {
17-
"graceful-fs": "^4.1"
18-
},
16+
"dependencies": {},
1917
"devDependencies": {},
18+
"engines": {
19+
"node": ">= 12.0.0"
20+
},
2021
"repository": {
2122
"type": "git",
2223
"url": "git+https://github.com/Punk-UnDeaD/node-sass-export.git"

0 commit comments

Comments
 (0)