Skip to content

Commit 5955470

Browse files
committed
add app.js, bump patch
1 parent f39c0e7 commit 5955470

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ module.exports = function(grunt) {
33
pkg: grunt.file.readJSON('package.json'),
44
browserify: {
55
dist: {
6-
src: [ 'src/<%= pkg.name %>.js' ],
6+
src: [ 'src/app.js' ],
77
dest: 'dist/<%= pkg.name %>.js',
88
options: {
99
standalone: '<%= pkg.name %>'
1010
}
1111
},
1212
dist_min: {
13-
src: [ 'src/<%= pkg.name %>.js' ],
13+
src: [ 'src/app.js' ],
1414
dest: 'dist/<%= pkg.name %>.min.js',
1515
options: {
1616
standalone: '<%= pkg.name %>',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "regex-trigram",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"description": "JavaScript port of portions of Google Code Search",
55
"author": "Bright Fulton",
66
"main": "lib/regex.js",

src/app.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Regex = require('./regex-trigram');

0 commit comments

Comments
 (0)