cucumber-expressions
Advanced tools
Comparing version 8.2.1 to 8.3.0
@@ -0,1 +1,4 @@ | ||
import Argument from './Argument'; | ||
import Expression from './Expression'; | ||
import Group from './Group'; | ||
import CucumberExpression from './CucumberExpression'; | ||
@@ -6,9 +9,2 @@ import RegularExpression from './RegularExpression'; | ||
import ParameterType from './ParameterType'; | ||
declare const _default: { | ||
CucumberExpression: typeof CucumberExpression; | ||
RegularExpression: typeof RegularExpression; | ||
CucumberExpressionGenerator: typeof CucumberExpressionGenerator; | ||
ParameterTypeRegistry: typeof ParameterTypeRegistry; | ||
ParameterType: typeof ParameterType; | ||
}; | ||
export = _default; | ||
export { Argument, Group, Expression, CucumberExpression, RegularExpression, CucumberExpressionGenerator, ParameterTypeRegistry, ParameterType, }; |
@@ -5,14 +5,17 @@ "use strict"; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var Argument_1 = __importDefault(require("./Argument")); | ||
exports.Argument = Argument_1.default; | ||
var Group_1 = __importDefault(require("./Group")); | ||
exports.Group = Group_1.default; | ||
var CucumberExpression_1 = __importDefault(require("./CucumberExpression")); | ||
exports.CucumberExpression = CucumberExpression_1.default; | ||
var RegularExpression_1 = __importDefault(require("./RegularExpression")); | ||
exports.RegularExpression = RegularExpression_1.default; | ||
var CucumberExpressionGenerator_1 = __importDefault(require("./CucumberExpressionGenerator")); | ||
exports.CucumberExpressionGenerator = CucumberExpressionGenerator_1.default; | ||
var ParameterTypeRegistry_1 = __importDefault(require("./ParameterTypeRegistry")); | ||
exports.ParameterTypeRegistry = ParameterTypeRegistry_1.default; | ||
var ParameterType_1 = __importDefault(require("./ParameterType")); | ||
module.exports = { | ||
CucumberExpression: CucumberExpression_1.default, | ||
RegularExpression: RegularExpression_1.default, | ||
CucumberExpressionGenerator: CucumberExpressionGenerator_1.default, | ||
ParameterTypeRegistry: ParameterTypeRegistry_1.default, | ||
ParameterType: ParameterType_1.default, | ||
}; | ||
exports.ParameterType = ParameterType_1.default; | ||
//# sourceMappingURL=index.js.map |
"use strict"; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; | ||
result["default"] = mod; | ||
return result; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var index_1 = __importDefault(require("./index")); | ||
var CucumberExpressions = __importStar(require("./index")); | ||
// @ts-ignore | ||
window.CucumberExpressions = index_1.default; | ||
window.CucumberExpressions = CucumberExpressions; | ||
//# sourceMappingURL=web.js.map |
{ | ||
"name": "cucumber-expressions", | ||
"version": "8.2.1", | ||
"version": "8.3.0", | ||
"description": "Cucumber Expressions - a simpler alternative to Regular Expressions", | ||
@@ -33,3 +33,3 @@ "main": "dist/src/index.js", | ||
"@types/mocha": "^5.2.7", | ||
"@types/node": "^12.12.7", | ||
"@types/node": "^12.12.16", | ||
"mocha": "^6.2.2", | ||
@@ -39,7 +39,7 @@ "nyc": "^14.1.1", | ||
"ts-loader": "^6.2.1", | ||
"ts-node": "^8.5.0", | ||
"ts-node": "^8.5.4", | ||
"tslint": "^5.20.1", | ||
"tslint-config-prettier": "^1.18.0", | ||
"tslint-plugin-prettier": "^2.0.1", | ||
"typescript": "^3.7.2", | ||
"typescript": "^3.7.3", | ||
"webpack": "^4.41.2", | ||
@@ -46,0 +46,0 @@ "webpack-cli": "^3.3.10" |
@@ -0,1 +1,4 @@ | ||
import Argument from './Argument' | ||
import Expression from './Expression' | ||
import Group from './Group' | ||
import CucumberExpression from './CucumberExpression' | ||
@@ -7,3 +10,6 @@ import RegularExpression from './RegularExpression' | ||
export = { | ||
export { | ||
Argument, | ||
Group, | ||
Expression, | ||
CucumberExpression, | ||
@@ -10,0 +16,0 @@ RegularExpression, |
@@ -1,4 +0,4 @@ | ||
import CucumberExpressions from './index' | ||
import * as CucumberExpressions from './index' | ||
// @ts-ignore | ||
window.CucumberExpressions = CucumberExpressions |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
644206
153
11030