generator-razor 13.4.4 → 13.4.6
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 +4 -11
- package/package.json +1 -1
package/app/index.js
CHANGED
|
@@ -328,17 +328,10 @@ module.exports = class extends Generator {
|
|
|
328
328
|
// yarn settings
|
|
329
329
|
const yarnSettings = { dev: true, 'no-lockfile': true, 'modules-folder': 'typo3conf/ext/' }
|
|
330
330
|
|
|
331
|
-
//
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
'https://github.com/FriendsOfTYPO3/content-blocks/archive/refs/tags/1.3.19.tar.gz',
|
|
336
|
-
], yarnSettings)
|
|
337
|
-
} else {
|
|
338
|
-
this.yarnInstall([
|
|
339
|
-
'ssh://git@github.com/rafu1987/razor.git#' + branch
|
|
340
|
-
], yarnSettings)
|
|
341
|
-
}
|
|
331
|
+
// Install
|
|
332
|
+
this.yarnInstall([
|
|
333
|
+
'ssh://git@github.com/rafu1987/razor.git#' + branch
|
|
334
|
+
], yarnSettings)
|
|
342
335
|
}
|
|
343
336
|
|
|
344
337
|
end () {
|