Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
atomiks committed Dec 30, 2017
1 parent 3299f8d commit a9b33b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"tagger": "node ./scripts/tag.js",
"webber": "node ./scripts/web.js",
"tdd": "node ./scripts/tdd.js",
"module": "node .scripts/module.js"
"module": "node ./scripts/module.js"
},
"repository": {
"type": "git",
Expand Down
3 changes: 1 addition & 2 deletions scripts/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ const IMPORTS = './imports.js';

const codeRE = /```\s*js([\s\S]*?)```/;

const tagDatabase = fs.readFileSync('tag_database', 'utf8');

console.time('Module');

try {
const tagDatabase = fs.readFileSync('tag_database', 'utf8');
const snippets = fs.readdirSync(SNIPPETS_PATH);

if (!fs.existsSync(TEMP_PATH)) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/rollup.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import minify from 'rollup-plugin-babel-minify';
export default {
input: './imports.js',
output: {
file: './lib/TSOC.js',
file: './module/TSOC.js',
format: 'umd',
name: 'TSOC'
},
Expand Down

0 comments on commit a9b33b4

Please sign in to comment.