From 28add9cebd9ef2cdfc05f4de167e450cbb25c5d7 Mon Sep 17 00:00:00 2001 From: Alan Kligman Date: Thu, 7 Nov 2013 16:29:23 -0500 Subject: [PATCH] rename source files --- build/wrap.end | 2 +- dist/idbfs.js | 4 ++-- gruntfile.js | 2 +- src/{file-system.js => fs.js} | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename src/{file-system.js => fs.js} (100%) diff --git a/build/wrap.end b/build/wrap.end index 0da7a67..785bbe5 100644 --- a/build/wrap.end +++ b/build/wrap.end @@ -1,5 +1,5 @@ - var IDBFS = require( "src/file-system" ); + var IDBFS = require( "src/fs" ); return IDBFS; diff --git a/dist/idbfs.js b/dist/idbfs.js index a16ab2c..221a729 100644 --- a/dist/idbfs.js +++ b/dist/idbfs.js @@ -5798,7 +5798,7 @@ define('src/constants',['require'],function(require) { }; }); -define('src/file-system',['require','lodash','when','src/path','src/path','src/path','src/shared','src/shared','src/shared','src/error','src/error','src/error','src/error','src/error','src/error','src/error','src/error','src/error','src/error','src/error','src/error','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants'],function(require) { +define('src/fs',['require','lodash','when','src/path','src/path','src/path','src/shared','src/shared','src/shared','src/error','src/error','src/error','src/error','src/error','src/error','src/error','src/error','src/error','src/error','src/error','src/error','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants','src/constants'],function(require) { var indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; @@ -7151,7 +7151,7 @@ define('src/file-system',['require','lodash','when','src/path','src/path','src/p }; }); - var IDBFS = require( "src/file-system" ); + var IDBFS = require( "src/fs" ); return IDBFS; diff --git a/gruntfile.js b/gruntfile.js index 7d794ea..738742e 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -25,7 +25,7 @@ module.exports = function(grunt) { }, baseUrl: "lib", name: "build/almond", - include: ["src/file-system"], + include: ["src/fs"], out: "dist/idbfs.js", optimize: "none", wrap: { diff --git a/src/file-system.js b/src/fs.js similarity index 100% rename from src/file-system.js rename to src/fs.js