Skip to content

Commit

Permalink
comment out version switcher
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Oct 13, 2019
1 parent a6e2796 commit 79be201
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
var fs = require("fs");

module.exports = (options, ctx) => {
const versions = fs
.readFileSync("./versions", { encoding: "utf8" })
.split("\n")
.filter(version => version != "");
Object.assign(
options,
Object.assign({
versions
})
);
return options;
// const versions = fs
// .readFileSync("./versions", { encoding: "utf8" })
// .split("\n")
// .filter(version => version != "");
// Object.assign(
// options,
// Object.assign({
// versions
// })
// );
// return options;
};

0 comments on commit 79be201

Please sign in to comment.