diff --git a/Makefile b/Makefile index 8d5e6de..e076b16 100755 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ REQS= ADDONS= AUXTARGETS= CMDS=bin/ssf.njs -HTMLLINT= +HTMLLINT=index.html ULIB=$(shell echo $(LIB) | tr a-z A-Z) DEPS=$(sort $(wildcard bits/*.js)) diff --git a/bin/ssf.njs b/bin/ssf.njs index 60b6cbf..5992a82 100755 --- a/bin/ssf.njs +++ b/bin/ssf.njs @@ -2,11 +2,11 @@ /* ssf.js (C) 2013-present SheetJS -- http://sheetjs.com */ /* eslint-env node */ /* eslint no-console:0 */ -var SSF = require('../'); +var X = require('../'); var argv = process.argv.slice(2); if(argv.length < 2 || argv[0] == "-h" || argv[0] == "--help") { console.error("usage: ssf "); console.error("output: format_as_string|format_as_number|"); process.exit(0); } -console.log(SSF.format(argv[0],argv[1]) + "|" + SSF.format(argv[0],+(argv[1])) + "|"); +console.log(X.format(argv[0],argv[1]) + "|" + X.format(argv[0],+(argv[1])) + "|"); diff --git a/bits/01_version.js b/bits/01_version.js index 2c1d4d2..48b8ef0 100644 --- a/bits/01_version.js +++ b/bits/01_version.js @@ -1 +1 @@ -SSF.version = '0.10.0'; +SSF.version = '0.10.1'; diff --git a/index.html b/index.html index 13ec075..d9b4504 100644 --- a/index.html +++ b/index.html @@ -26,6 +26,7 @@ a { text-decoration: none }