Comparing version 0.3.0 to 0.3.1
@@ -5,2 +5,9 @@ # Changelog | ||
### [0.3.1](https://github.com/aspidajs/aspida/compare/v0.3.0...v0.3.1) (2019-10-13) | ||
### Bug Fixes | ||
* **builder:** add single quotes to property names ([516191f](https://github.com/aspidajs/aspida/commit/516191f)) | ||
### [0.3.0](https://github.com/aspidajs/aspida/compare/v0.2.0...v0.3.0) (2019-10-12) | ||
@@ -7,0 +14,0 @@ |
@@ -118,10 +118,10 @@ "use strict"; | ||
var target = path_1.default.posix.join(mockDir, file); | ||
var valFn = "" + indent + file | ||
var valFn = indent + "'" + file | ||
.replace(/\.ts$/, '') | ||
.split('.') | ||
.map(function (f, i) { return (i > 0 ? "" + f.charAt(0).toUpperCase() + f.slice(1) : f); }) | ||
.join('') + ": {\n<% next %>\n" + indent + "}"; | ||
.join('') + "': {\n<% next %>\n" + indent + "}"; | ||
var newUrl = url + "/" + file.replace(/\.ts$/, ''); | ||
if (file.startsWith('_')) { | ||
valFn = "" + indent + file.split('.')[0] + ": (val" + valCount + ": number | string) => ({\n<% next %>\n" + indent + "})"; | ||
valFn = indent + "'" + file.split('.')[0] + "': (val" + valCount + ": number | string) => ({\n<% next %>\n" + indent + "})"; | ||
newUrl = url + "/${val" + valCount + "}"; | ||
@@ -128,0 +128,0 @@ valCount += 1; |
{ | ||
"name": "aspida", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "Type safe HTTP client for the browser and node.js", | ||
@@ -5,0 +5,0 @@ "author": "m-mitsuhide <m.mitsuhide@amatelus.com>", |
Sorry, the diff of this file is not supported yet
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
32681