Skip to content

Commit f592891

Browse files
authored
Replaces a dependecy in version.js (#2712)
version.js had a dependency on fs-extra, which is not necessary, because we can use the built-in Node functionality. FIXES: WEB-351
1 parent e11dd2d commit f592891

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const { gitDescribeSync } = require('git-describe');
22
const { resolve, relative } = require('path');
3-
const { writeFileSync } = require('fs-extra');
3+
const { writeFileSync } = require('node:fs');
44
const moment = require('moment');
55

66
const gitInfo = gitDescribeSync({

0 commit comments

Comments
 (0)