change package entry point to index.js

This commit is contained in:
Kevin Anthoney 2016-08-08 10:10:14 +01:00
Родитель edc3c0be0e
Коммит c087b539f2
14 изменённых файлов: 40 добавлений и 32 удалений

27
index.js Normal file
Просмотреть файл

@ -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);
};

Просмотреть файл

@ -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() {