config-editor-base 1.5.0 → 1.5.4
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.
- package/README.md +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/schema/Advanced/uischema-01.04.json +619 -0
- package/dist/schema/Advanced/uischema-01.06.json +619 -0
- package/dist/schema/CANedge1/schema-01.04.json +2043 -0
- package/dist/schema/CANedge1/schema-01.06.json +2050 -0
- package/dist/schema/CANedge2/schema-01.04.json +2474 -0
- package/dist/schema/CANedge2/schema-01.06.json +2483 -0
- package/dist/schema/Simple/uischema-01.04.json +666 -0
- package/dist/schema/Simple/uischema-01.06.json +666 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -55,7 +55,7 @@ var isValidSchema = function isValidSchema(file) {
|
|
|
55
55
|
return regexSchema.test(file);
|
|
56
56
|
};
|
|
57
57
|
var isValidConfig = function isValidConfig(file) {
|
|
58
|
-
var regexConfig = new RegExp('config-\\d{2}\\.\\d{2}\\.json', 'g');
|
|
58
|
+
var regexConfig = new RegExp('config-\\d{2}\\.\\d{2}.{0,35}\\.json', 'g');
|
|
59
59
|
return regexConfig.test(file);
|
|
60
60
|
};
|
|
61
61
|
var getFileType = function getFileType(dropdown) {
|