Changeset - ef724a65e0a7
[Not reviewed]
0 2 0
Lance Edgar (lance) - 15 months ago 2023-06-09 15:05:13
lance@edbob.org
Hopefully fix composer-components path issue ?

fannie/src/javascript/composer-components was not getting the
necessary files, and i noticed the upstream composer.json used a
different config style for mapping these paths. so copied that
snippet and hoping this works...

not clear why i would not have noticed that mapping before, or why i
ignored if so..?
1 file changed:
Changeset was too big and was cut off... Show full diff anyway
0 comments (0 inline, 0 general)
composer.json
Show inline comments
 
{
 
    "name": "rattail/corepos-demo-poser",
 
    "description": "Poser demo for CORE-POS",
 
    "license": "GPL-3.0-or-later",
 
    "authors": [
 
        {
 
            "name": "Lance Edgar",
 
            "email": "lance@edbob.org"
 
        }
 
    ],
 
    "require": {
 
        "wikimedia/composer-merge-plugin": "^2.1",
 
        "rattail/posterior": "^0.1.1"
 
    },
 
    "extra": {
 
        "installer-types": ["component"],
 
        "installer-paths": {
 
            "../IS4C/fannie/src/javascript/composer-components/{$name}/": ["type:component"]
 
        },
 
        "merge-plugin": {
 
            "require": [
 
                "../IS4C/composer.json"
 
            ]
 
        }
 
    },
 
    "config": {
 
        "component-dir": "../IS4C/fannie/src/javascript/composer-components",
 
        "vendor-dir": "../IS4C/vendor",
 
        "vendor-dir": "../IS4C/vendor/",
 
        "allow-plugins": {
 
            "composer/installers": true,
 
            "oomphinc/composer-installers-extender": true,
 
            "corepos/composer-installer": true,
 
            "wikimedia/composer-merge-plugin": true
 
        }
 
    }
 
}

Changeset was too big and was cut off... Show full diff anyway

0 comments (0 inline, 0 general)