@pushrocks/smartfeed
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -1,1 +0,4 @@ | ||
export declare let standardExport: string; | ||
import { Feed, IFeedOptions } from './smartfeed.classes.feed'; | ||
export declare class Smartfeed { | ||
createFeed(optionsArg: IFeedOptions): Feed; | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.standardExport = void 0; | ||
exports.standardExport = 'Hi there! :) This is an exported string'; | ||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFFVyxRQUFBLGNBQWMsR0FBRyx5Q0FBeUMsQ0FBQyJ9 | ||
exports.Smartfeed = void 0; | ||
const smartfeed_classes_feed_1 = require("./smartfeed.classes.feed"); | ||
class Smartfeed { | ||
createFeed(optionsArg) { | ||
const feedVersion = new smartfeed_classes_feed_1.Feed(optionsArg); | ||
return feedVersion; | ||
} | ||
} | ||
exports.Smartfeed = Smartfeed; | ||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSxxRUFBOEQ7QUFHOUQsTUFBYSxTQUFTO0lBQ2IsVUFBVSxDQUFDLFVBQXdCO1FBQ3hDLE1BQU0sV0FBVyxHQUFHLElBQUksNkJBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUN6QyxPQUFPLFdBQVcsQ0FBQztJQUNyQixDQUFDO0NBQ0Y7QUFMRCw4QkFLQyJ9 |
@@ -1,2 +0,2 @@ | ||
declare const removeme: {}; | ||
export { removeme }; | ||
import * as feed from 'feed'; | ||
export { feed }; |
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | ||
Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||
}) : function(o, v) { | ||
o["default"] = v; | ||
}); | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.removeme = void 0; | ||
const removeme = {}; | ||
exports.removeme = removeme; | ||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRmZWVkLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9zbWFydGZlZWQucGx1Z2lucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSxNQUFNLFFBQVEsR0FBRyxFQUFFLENBQUM7QUFDWCw0QkFBUSJ9 | ||
exports.feed = void 0; | ||
// third party scope | ||
const feed = __importStar(require("feed")); | ||
exports.feed = feed; | ||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRmZWVkLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9zbWFydGZlZWQucGx1Z2lucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsb0JBQW9CO0FBQ3BCLDJDQUE2QjtBQUczQixvQkFBSSJ9 |
{ | ||
"name": "@pushrocks/smartfeed", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"private": false, | ||
@@ -23,3 +23,5 @@ "description": "create and parse feeds", | ||
}, | ||
"dependencies": {}, | ||
"dependencies": { | ||
"feed": "^4.2.1" | ||
}, | ||
"browserslist": [ | ||
@@ -26,0 +28,0 @@ "last 1 chrome versions" |
@@ -0,3 +1,9 @@ | ||
import { Feed, IFeedOptions } from './smartfeed.classes.feed'; | ||
import * as plugins from './smartfeed.plugins'; | ||
export let standardExport = 'Hi there! :) This is an exported string'; | ||
export class Smartfeed { | ||
public createFeed(optionsArg: IFeedOptions) { | ||
const feedVersion = new Feed(optionsArg); | ||
return feedVersion; | ||
} | ||
} |
@@ -1,2 +0,6 @@ | ||
const removeme = {}; | ||
export { removeme }; | ||
// third party scope | ||
import * as feed from 'feed'; | ||
export { | ||
feed | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11756
13
167
1
+ Addedfeed@^4.2.1
+ Addedfeed@4.2.2(transitive)
+ Addedsax@1.4.1(transitive)
+ Addedxml-js@1.6.11(transitive)