change package entry point to index.js
This commit is contained in:
Родитель
edc3c0be0e
Коммит
c087b539f2
|
@ -0,0 +1,27 @@
|
|||
'use strict';
|
||||
|
||||
const Odata = require('./odata');
|
||||
const Identifier = require('./identifier');
|
||||
const Literal = require('./literal');
|
||||
const Expression = require('./expression');
|
||||
|
||||
module.exports = function(config)
|
||||
{
|
||||
return new Odata(config);
|
||||
};
|
||||
|
||||
module.exports.expression = function(field, op, value)
|
||||
{
|
||||
return new Expression(field, op, value);
|
||||
};
|
||||
|
||||
module.exports.identifier = function(value)
|
||||
{
|
||||
return new Identifier(value);
|
||||
};
|
||||
|
||||
module.exports.literal = function(value)
|
||||
{
|
||||
return new Literal(value);
|
||||
};
|
||||
|
21
odata.js
21
odata.js
|
@ -322,23 +322,4 @@ Odata.prototype.send = function()
|
|||
};
|
||||
|
||||
|
||||
module.exports = function(config)
|
||||
{
|
||||
return new Odata(config);
|
||||
};
|
||||
|
||||
module.exports.expression = function(field, op, value)
|
||||
{
|
||||
return new Expression(field, op, value);
|
||||
};
|
||||
|
||||
module.exports.identifier = function(value)
|
||||
{
|
||||
return new Identifier(value);
|
||||
};
|
||||
|
||||
module.exports.literal = function(value)
|
||||
{
|
||||
return new Literal(value);
|
||||
};
|
||||
|
||||
module.exports = Odata;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "odata-client",
|
||||
"version": "0.4.1",
|
||||
"description": "odata client",
|
||||
"main": "odata.js",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "jasmine"
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
const Odata = require('../odata');
|
||||
const Odata = require('../index');
|
||||
|
||||
const config = {
|
||||
service: 'https://example.com',
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
const odata = require('../odata');
|
||||
const odata = require('../index');
|
||||
|
||||
const config = {
|
||||
service: 'https://example.com',
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
const Odata = require('../odata');
|
||||
const Odata = require('../index');
|
||||
const config = {
|
||||
service: 'https://example.com',
|
||||
resources: 'Customer'
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
'use script';
|
||||
|
||||
const odata = require('../odata');
|
||||
const odata = require('../index');
|
||||
const _ = require('lodash');
|
||||
|
||||
const config = {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
const odata = require('../odata');
|
||||
const odata = require('../index');
|
||||
|
||||
const config = {
|
||||
service: 'https://example.com',
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
const Odata = require('../odata');
|
||||
const Odata = require('../index');
|
||||
|
||||
const config = {
|
||||
service: 'https://example.com',
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
const Odata = require('../odata');
|
||||
const Odata = require('../index');
|
||||
|
||||
const config = {
|
||||
service: 'https://example.com'
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
const odata = require('../odata');
|
||||
const odata = require('../index');
|
||||
|
||||
const config = {
|
||||
service: 'https://example.com',
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
const odata = require('../odata');
|
||||
const odata = require('../index');
|
||||
|
||||
const config = {
|
||||
service: 'https://example.com',
|
||||
|
|
|
@ -9,7 +9,7 @@ describe('skip query', function() {
|
|||
|
||||
var odata;
|
||||
beforeEach(function() {
|
||||
odata = require('../odata.js')(config);
|
||||
odata = require('../index')(config);
|
||||
});
|
||||
|
||||
it('should set a skip value of 5', function() {
|
||||
|
|
|
@ -9,7 +9,7 @@ describe('top query', function() {
|
|||
|
||||
var odata;
|
||||
beforeEach(function() {
|
||||
odata = require('../odata.js')(config);
|
||||
odata = require('../index')(config);
|
||||
});
|
||||
|
||||
it('should set a top value of 5', function() {
|
||||
|
|
Загрузка…
Ссылка в новой задаче