Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aurelia-route-recognizer

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aurelia-route-recognizer - npm Package Compare versions

Comparing version 1.0.0-rc.1.0.1 to 1.0.0

ISSUE_TEMPLATE.md

4

bower.json
{
"name": "aurelia-route-recognizer",
"version": "1.0.0-rc.1.0.1",
"version": "1.0.0",
"description": "A lightweight JavaScript library that matches paths against registered routes. It includes support for dynamic and star segments and nested handlers.",

@@ -21,4 +21,4 @@ "keywords": [

"dependencies": {
"aurelia-path": "^1.0.0-rc.1.0.0"
"aurelia-path": "^1.0.0"
}
}

@@ -9,6 +9,6 @@ System.config({

map: {
"aurelia-path": "npm:aurelia-path@1.0.0-rc.1.0.0",
"aurelia-path": "npm:aurelia-path@1.0.0",
"babel": "npm:babel-core@5.8.38",
"babel-runtime": "npm:babel-runtime@5.8.38",
"core-js": "npm:core-js@2.4.0",
"core-js": "npm:core-js@2.4.1",
"github:jspm/nodelibs-assert@0.1.0": {

@@ -24,3 +24,3 @@ "assert": "npm:assert@1.4.1"

"github:jspm/nodelibs-process@0.1.2": {
"process": "npm:process@0.11.5"
"process": "npm:process@0.11.6"
},

@@ -50,3 +50,3 @@ "github:jspm/nodelibs-util@0.1.0": {

},
"npm:core-js@2.4.0": {
"npm:core-js@2.4.1": {
"fs": "github:jspm/nodelibs-fs@0.1.2",

@@ -63,3 +63,3 @@ "path": "github:jspm/nodelibs-path@0.1.0",

},
"npm:process@0.11.5": {
"npm:process@0.11.6": {
"assert": "github:jspm/nodelibs-assert@0.1.0",

@@ -66,0 +66,0 @@ "fs": "github:jspm/nodelibs-fs@0.1.2",

@@ -267,3 +267,3 @@ define(['exports', 'aurelia-path'], function (exports, _aureliaPath) {

var handler = route.handlers[0].handler;
if (handler.href) {
if (handler.generationUsesHref) {
return handler.href;

@@ -270,0 +270,0 @@ }

@@ -8,3 +8,3 @@ define(['exports', './aurelia-route-recognizer'], function (exports, _aureliaRouteRecognizer) {

Object.keys(_aureliaRouteRecognizer).forEach(function (key) {
if (key === "default") return;
if (key === "default" || key === "__esModule") return;
Object.defineProperty(exports, key, {

@@ -11,0 +11,0 @@ enumerable: true,

@@ -326,3 +326,3 @@ import {buildQueryString,parseQueryString} from 'aurelia-path';

let handler = route.handlers[0].handler;
if (handler.href) {
if (handler.generationUsesHref) {
return handler.href;

@@ -329,0 +329,0 @@ }

@@ -268,3 +268,3 @@ 'use strict';

var handler = route.handlers[0].handler;
if (handler.href) {
if (handler.generationUsesHref) {
return handler.href;

@@ -271,0 +271,0 @@ }

@@ -10,3 +10,3 @@ 'use strict';

Object.keys(_aureliaRouteRecognizer).forEach(function (key) {
if (key === "default") return;
if (key === "default" || key === "__esModule") return;
Object.defineProperty(exports, key, {

@@ -13,0 +13,0 @@ enumerable: true,

@@ -218,3 +218,3 @@ import { buildQueryString, parseQueryString } from 'aurelia-path';

let handler = route.handlers[0].handler;
if (handler.href) {
if (handler.generationUsesHref) {
return handler.href;

@@ -221,0 +221,0 @@ }

@@ -261,3 +261,3 @@

var handler = route.handlers[0].handler;
if (handler.href) {
if (handler.generationUsesHref) {
return handler.href;

@@ -264,0 +264,0 @@ }

@@ -384,3 +384,3 @@ 'use strict';

var handler = route.handlers[0].handler;
if (handler.href) {
if (handler.generationUsesHref) {
return handler.href;

@@ -387,0 +387,0 @@ }

@@ -11,3 +11,3 @@ 'use strict';

for (var _key in _aureliaRouteRecognizer) {
if (_key !== "default") _exportObj[_key] = _aureliaRouteRecognizer[_key];
if (_key !== "default" && key !== "__esModule") _exportObj[_key] = _aureliaRouteRecognizer[_key];
}

@@ -14,0 +14,0 @@

@@ -0,1 +1,11 @@

<a name="1.0.0"></a>
# [1.0.0](https://github.com/aurelia/route-recognizer/compare/1.0.0-rc.1.0.1...v1.0.0) (2016-07-27)
### Bug Fixes
* **route-recognizer:** use href for generation only when specified ([97b377b](https://github.com/aurelia/route-recognizer/commit/97b377b)), closes [#24](https://github.com/aurelia/route-recognizer/issues/24)
<a name="1.0.0-rc.1.0.1"></a>

@@ -2,0 +12,0 @@ # [1.0.0-rc.1.0.1](https://github.com/aurelia/route-recognizer/compare/1.0.0-rc.1.0.0...v1.0.0-rc.1.0.1) (2016-07-12)

{
"name": "aurelia-route-recognizer",
"version": "1.0.0-rc.1.0.1",
"version": "1.0.0",
"description": "A lightweight JavaScript library that matches paths against registered routes. It includes support for dynamic and star segments and nested handlers.",

@@ -34,6 +34,6 @@ "keywords": [

"peerDependencies": {
"aurelia-path": "^1.0.0-rc.1.0.0"
"aurelia-path": "^1.0.0"
},
"dependencies": {
"aurelia-path": "^1.0.0-rc.1.0.0"
"aurelia-path": "^1.0.0"
},

@@ -47,13 +47,13 @@ "devDependencies": {

"dependencies": {
"aurelia-path": "^1.0.0-rc.1.0.0"
"aurelia-path": "^1.0.0"
},
"devDependencies": {
"aurelia-tools": "0.2.3",
"babel-dts-generator": "^0.6.0",
"babel-eslint": "^6.0.5",
"aurelia-tools": "0.2.4",
"babel-dts-generator": "^0.6.1",
"babel-eslint": "^6.1.2",
"babel-plugin-syntax-flow": "^6.8.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-amd": "^6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.10.3",
"babel-plugin-transform-es2015-modules-systemjs": "^6.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.11.5",
"babel-plugin-transform-es2015-modules-systemjs": "^6.11.6",
"babel-plugin-transform-flow-strip-types": "^6.8.0",

@@ -67,7 +67,7 @@ "babel-preset-es2015": "^6.9.0",

"gulp-babel": "^6.1.2",
"gulp-bump": "^2.1.0",
"gulp-bump": "^2.2.0",
"gulp-concat": "^2.6.0",
"gulp-conventional-changelog": "^1.1.0",
"gulp-coveralls": "0.1.4",
"gulp-eslint": "^2.0.0",
"gulp-eslint": "^3.0.1",
"gulp-ignore": "^2.0.1",

@@ -83,3 +83,3 @@ "gulp-insert": "^0.5.0",

"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma": "^1.1.2",
"karma-babel-preprocessor": "^6.0.1",

@@ -90,8 +90,8 @@ "karma-chrome-launcher": "1.0.1",

"karma-jasmine": "^1.0.2",
"karma-jspm": "^2.1.1",
"karma-jspm": "^2.2.0",
"karma-sourcemap-loader": "0.3.7",
"merge2": "^1.0.2",
"object.assign": "^4.0.3",
"object.assign": "^4.0.4",
"require-dir": "^0.3.0",
"run-sequence": "^1.2.1",
"run-sequence": "^1.2.2",
"through2": "^2.0.1",

@@ -102,3 +102,3 @@ "typedoc": "^0.4.4",

"vinyl-paths": "^2.1.0",
"yargs": "^4.7.1"
"yargs": "^4.8.1"
},

@@ -105,0 +105,0 @@ "aurelia": {

@@ -122,3 +122,3 @@ import {buildQueryString, parseQueryString} from 'aurelia-path';

let handler = route.handlers[0].handler;
if (handler.href) {
if (handler.generationUsesHref) {
return handler.href;

@@ -125,0 +125,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc