corebasic 1.0.99 → 1.0.100

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/libs/features.js +1 -1
  2. package/package.json +1 -1
package/libs/features.js CHANGED
@@ -121,7 +121,7 @@ export const start = async (app, url, file) => {
121
121
  let params = getFeatureUrl(feature.api).split("/").filter(item => item.startsWith(":"))
122
122
  for (let param of params)
123
123
  if (!req.params[param])
124
- throw { status: 404, message: "Resource not found. One or more url parameter not specified" }
124
+ throw { status: 404, message: "Resource not found. One or more url parameter not specified. Feature: " + JSON.stringify(feature) + "\n Params: " + JSON.stringify(params) }
125
125
 
126
126
 
127
127
  if (method === "get") {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "corebasic",
3
3
  "type": "module",
4
- "version": "1.0.99",
4
+ "version": "1.0.100",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "scripts": {