@cocreate/file 1.6.2 → 1.6.3
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 +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.6.3](https://github.com/CoCreate-app/CoCreate-file/compare/v1.6.2...v1.6.3) (2023-08-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove unused console.log ([610fc0b](https://github.com/CoCreate-app/CoCreate-file/commit/610fc0b99c344a954b776a610c514c56ec034e1f))
|
|
7
|
+
|
|
1
8
|
## [1.6.2](https://github.com/CoCreate-app/CoCreate-file/compare/v1.6.1...v1.6.2) (2023-08-21)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/server.js
CHANGED
|
@@ -376,8 +376,6 @@ module.exports = async function file(CoCreateConfig, configPath) {
|
|
|
376
376
|
|
|
377
377
|
async function runStore(data) {
|
|
378
378
|
try {
|
|
379
|
-
if (data.object.name === 'prism-chunk.js')
|
|
380
|
-
console.log('prism-chunk.js')
|
|
381
379
|
let response;
|
|
382
380
|
if (!data.object._id && !data.filter) {
|
|
383
381
|
response = await crud.send({
|