Skip to content

Commit

Permalink
remove class/descriptor
Browse files Browse the repository at this point in the history
  • Loading branch information
dlueth committed May 4, 2021
1 parent 2a4e742 commit 243e037
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 33 deletions.
2 changes: 1 addition & 1 deletion dist/cache/dispose.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cache/states.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/demand.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/demand.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/handler/css.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/handler/html.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/handler/json.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/handler/legacy.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/handler/text.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/plugin/cookie.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/plugin/lzstring.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/plugin/sri.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "qoopido.demand",
"title": "Qoopido.demand",
"description": "Promise like module loader using XHR requests and localStorage caching to dynamically load JavaScript and CSS + dynamic dependency resolution + support for custom handlers",
"version": "7.2.0",
"version": "7.2.1",
"homepage": "https://github.com/dlueth/qoopido.demand",
"author": {
"name": "Dirk Lueth",
Expand Down
16 changes: 0 additions & 16 deletions src/class/descriptor.js

This file was deleted.

4 changes: 1 addition & 3 deletions src/demand.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
validatorIsTypeOf, validatorIsArray, validatorIsObject, validatorIsInstanceOf, validatorIsSemver, validatorIsThenable,
functionResolveUrl, functionResolveSourcemaps, functionMerge, functionIterate, functionDefer, functionToArray, functionFPS, functionOnIdle, functionOnAnimationFrame, functionHash, functionUuid,
AbstractUuid, abstractHandler,
ClassDependency, ClassQueue, ClassProcessor, ClassPledge, ClassFailure, ClassDescriptor, ClassWeakmap, ClassTask, ClassSemver,
ClassDependency, ClassQueue, ClassProcessor, ClassPledge, ClassFailure, ClassWeakmap, ClassTask, ClassSemver,
handlerModule, handlerBundle, handlerComponent,
pluginGenie
*/
Expand Down Expand Up @@ -33,7 +33,6 @@
// include additional components
//=require validator/IsInstanceOf.js
//=require function/hash.js
//=require class/descriptor.js
//=require class/queue.js
//=require class/processor.js
//=require handler/module.js
Expand Down Expand Up @@ -74,7 +73,6 @@
assignModule(MODULE_PREFIX_FUNCTION + 'toArray', functionToArray);
assignModule(MODULE_PREFIX + 'task', ClassTask);
assignModule(MODULE_PREFIX + 'weakmap', ClassWeakmap);
assignModule(MODULE_PREFIX + 'descriptor', ClassDescriptor);
assignModule(MODULE_PREFIX + 'pledge', ClassPledge);
assignModule(MODULE_PREFIX + 'queue', ClassQueue);
assignModule(MODULE_PREFIX + 'failure', ClassFailure);
Expand Down

0 comments on commit 243e037

Please sign in to comment.