fix typos
This commit is contained in:
@ -19,7 +19,7 @@
|
|||||||
"tagger": "node ./scripts/tag.js",
|
"tagger": "node ./scripts/tag.js",
|
||||||
"webber": "node ./scripts/web.js",
|
"webber": "node ./scripts/web.js",
|
||||||
"tdd": "node ./scripts/tdd.js",
|
"tdd": "node ./scripts/tdd.js",
|
||||||
"module": "node .scripts/module.js"
|
"module": "node ./scripts/module.js"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|||||||
@ -12,11 +12,10 @@ const IMPORTS = './imports.js';
|
|||||||
|
|
||||||
const codeRE = /```\s*js([\s\S]*?)```/;
|
const codeRE = /```\s*js([\s\S]*?)```/;
|
||||||
|
|
||||||
const tagDatabase = fs.readFileSync('tag_database', 'utf8');
|
|
||||||
|
|
||||||
console.time('Module');
|
console.time('Module');
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
const tagDatabase = fs.readFileSync('tag_database', 'utf8');
|
||||||
const snippets = fs.readdirSync(SNIPPETS_PATH);
|
const snippets = fs.readdirSync(SNIPPETS_PATH);
|
||||||
|
|
||||||
if (!fs.existsSync(TEMP_PATH)) {
|
if (!fs.existsSync(TEMP_PATH)) {
|
||||||
|
|||||||
@ -4,7 +4,7 @@ import minify from 'rollup-plugin-babel-minify';
|
|||||||
export default {
|
export default {
|
||||||
input: './imports.js',
|
input: './imports.js',
|
||||||
output: {
|
output: {
|
||||||
file: './lib/TSOC.js',
|
file: './module/TSOC.js',
|
||||||
format: 'umd',
|
format: 'umd',
|
||||||
name: 'TSOC'
|
name: 'TSOC'
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user