Skip to content

Commit

Permalink
move compressed data
Browse files Browse the repository at this point in the history
  • Loading branch information
spencermountain committed Jul 23, 2017
1 parent aa1b7ab commit 10e5a90
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/pack.js
Expand Up @@ -6,7 +6,7 @@ var path = require('path');
var fileSize = require('./lib/filesize');

console.log(chalk.yellow('\n 🕑 packing lexicon..'));
var out = path.join(__dirname, '../src/lexicon/_lexicon.js');
var out = path.join(__dirname, '../src/lexicon/compressed/_compressed.js');
//cleanup. remove old builds
// exec('rm ' + out);

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/lexicon/init.js
@@ -1,5 +1,5 @@
//lexicon in compressed form
const pckd = require('./_lexicon');
const pckd = require('./compressed/_compressed');
const efrt = require('efrt');
const buildOut = require('./buildOut');
const indexFirst = require('./firstWords');
Expand Down

0 comments on commit 10e5a90

Please sign in to comment.