generator-razor 13.4.7 → 13.4.8
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/app/index.js +10 -10
- package/app/templates/143/_.htaccess-dev +695 -0
- package/app/templates/143/_.htaccess-dev-ssl +695 -0
- package/app/templates/143/db.sql +1749 -0
- package/app/templates/143/fileadmin/.htaccess +4 -0
- package/app/templates/143/fileadmin/_temp_/.htaccess +15 -0
- package/app/templates/143/fileadmin/_temp_/index.html +7 -0
- package/app/templates/143/fileadmin/user_upload/.htaccess +33 -0
- package/app/templates/143/fileadmin/user_upload/_temp_/importexport/.htaccess +15 -0
- package/app/templates/143/fileadmin/user_upload/_temp_/importexport/index.html +7 -0
- package/app/templates/143/fileadmin/user_upload/_temp_/index.html +0 -0
- package/app/templates/143/fileadmin/user_upload/index.html +0 -0
- package/app/templates/143/typo3conf/PackageStates.php +91 -0
- package/app/templates/143/typo3conf/system/local.php +9 -0
- package/app/templates/143/typo3conf/system/settings.php +117 -0
- package/app/templates/143/typo3temp/index.html +0 -0
- package/app/templates/143/typo3temp/var/.htaccess +15 -0
- package/app/templates/143/typo3temp/var/log/.htaccess +13 -0
- package/package.json +1 -1
package/app/index.js
CHANGED
|
@@ -288,11 +288,11 @@ module.exports = class extends Generator {
|
|
|
288
288
|
const path = rzr.SrcPath + '/typo3_src-' + rzr.Version
|
|
289
289
|
|
|
290
290
|
// Version
|
|
291
|
-
let version = '
|
|
292
|
-
if (rzr.Version.indexOf('
|
|
293
|
-
version = '124'
|
|
294
|
-
} else if (rzr.Version.indexOf('13.4') !== -1) {
|
|
291
|
+
let version = '124'
|
|
292
|
+
if (rzr.Version.indexOf('13.4') !== -1) {
|
|
295
293
|
version = '134'
|
|
294
|
+
} else if (rzr.Version.indexOf('14.3') !== -1) {
|
|
295
|
+
version = '143'
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
this._createSymlinks(this, path, () => {
|
|
@@ -318,11 +318,11 @@ module.exports = class extends Generator {
|
|
|
318
318
|
rzr = this.props
|
|
319
319
|
|
|
320
320
|
// Branch
|
|
321
|
-
let branch = '
|
|
322
|
-
if (rzr.Version.indexOf('
|
|
323
|
-
branch = 'razor12-dev'
|
|
324
|
-
} else if (rzr.Version.indexOf('13.4') !== -1) {
|
|
321
|
+
let branch = 'razor12-dev'
|
|
322
|
+
if (rzr.Version.indexOf('13.4') !== -1) {
|
|
325
323
|
branch = 'razor13-dev'
|
|
324
|
+
} else if (rzr.Version.indexOf('14.3') !== -1) {
|
|
325
|
+
branch = 'razor14-dev'
|
|
326
326
|
}
|
|
327
327
|
|
|
328
328
|
// yarn settings
|
|
@@ -362,9 +362,9 @@ module.exports = class extends Generator {
|
|
|
362
362
|
const len = keys.length
|
|
363
363
|
const arr = []
|
|
364
364
|
|
|
365
|
-
// Filter out only
|
|
365
|
+
// Filter out only 12.4.x 13.4.x, 14.3.x
|
|
366
366
|
for (let i = 0; i < len; i++) {
|
|
367
|
-
if (keys[i].indexOf('
|
|
367
|
+
if (keys[i].indexOf('12.4.') !== -1 || keys[i].indexOf('13.4.') !== -1 || keys[i].indexOf('14.3.') !== -1) {
|
|
368
368
|
arr.push({
|
|
369
369
|
name: keys[i],
|
|
370
370
|
value: keys[i]
|