bfg-common 1.2.0 → 1.2.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/minify.js CHANGED
@@ -115,7 +115,7 @@ filesByOrder.forEach((filePath) => {
115
115
  `Ошибка при минификации файла ${filePath}: ${minified.error.message}`
116
116
  )
117
117
  } else {
118
- runMinJsContent += minified.code
118
+ runMinJsContent += `\n${minified.code}`
119
119
  index++
120
120
 
121
121
  // Если последний файл то все помещаем в run.min.js
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.2.0",
4
+ "version": "1.2.1",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",