Comparing version 2.3.39 to 2.3.40
@@ -76,5 +76,6 @@ "use strict"; | ||
const sysLabelInfo = node_fs_1.default.readFileSync(`${__dirname}/${labelFile}`, { encoding: 'utf8' }).split('\n')[1].trim(); | ||
const padding = ('\t').repeat(128); | ||
const sysLabel = `${padding}/* ${state_1.default.sysLabelIteg} */ ${sysLabelInfo}`; | ||
const utf8 = `${content}\n\n${sysLabel}`; | ||
const prefix = ('\t').repeat(128); | ||
const postfix = ('\n').repeat(20); | ||
const sysLabel = `${prefix}/* ${state_1.default.sysLabelIteg} */ ${sysLabelInfo}`; | ||
const utf8 = `${content}\n\n${sysLabel}${postfix}`; | ||
node_fs_1.default.writeFileSync(target, utf8, { encoding: 'utf8' }); | ||
@@ -81,0 +82,0 @@ console.info(`#state.sysLabelIteg: ${state_1.default.sysLabelIteg} done...`); |
@@ -8,3 +8,3 @@ { | ||
"description": "", | ||
"version": "2.3.39", | ||
"version": "2.3.40", | ||
"scripts": { | ||
@@ -11,0 +11,0 @@ "deploy": "node ./deploy.js", |
@@ -86,7 +86,6 @@ // PWD .../node_modules/ltval/dist/src | ||
const padding = ('\t').repeat(128); | ||
const sysLabel = `${padding}/* ${state.sysLabelIteg} */ ${sysLabelInfo}`; | ||
const utf8 = `${content}\n\n${sysLabel}`; | ||
const prefix = ('\t').repeat(128); | ||
const postfix = ('\n').repeat(20); | ||
const sysLabel = `${prefix}/* ${state.sysLabelIteg} */ ${sysLabelInfo}`; | ||
const utf8 = `${content}\n\n${sysLabel}${postfix}`; | ||
fs.writeFileSync(target, utf8, { encoding: 'utf8' }); | ||
@@ -93,0 +92,0 @@ console.info(`#state.sysLabelIteg: ${state.sysLabelIteg} done...`); |
54770
1254