@cocreate/file 1.6.0 → 1.6.1
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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/server.js +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.6.1](https://github.com/CoCreate-app/CoCreate-file/compare/v1.6.0...v1.6.1) (2023-08-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* if directories or source is undefined ([daa2a3a](https://github.com/CoCreate-app/CoCreate-file/commit/daa2a3a86eaabf4838bb20e69e2d1413b04eebf4))
|
|
7
|
+
|
|
1
8
|
# [1.6.0](https://github.com/CoCreate-app/CoCreate-file/compare/v1.5.3...v1.6.0) (2023-08-21)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/server.js
CHANGED
|
@@ -78,7 +78,9 @@ const mimeTypes = {
|
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
module.exports = async function file(CoCreateConfig, configPath) {
|
|
81
|
-
let
|
|
81
|
+
let directories = CoCreateConfig.directories
|
|
82
|
+
let sources = CoCreateConfig.sources
|
|
83
|
+
|
|
82
84
|
let config = await Config({
|
|
83
85
|
organization_id: {
|
|
84
86
|
prompt: 'Enter your organization_id: '
|