- Issue created by @danrod
We already have a package.json
file that downloads some dependencies that this theme needs:
{
"name": "estore",
"version": "2.1.0",
"description": "eStore SASS (dart) toolkit",
"engines" : {
"node" : ">=18.0.0"
},
"dependencies": {
"bootstrap-sass": "^3.4.3",
"sass": "^1.69.7"
},
"scripts": {
"watch": "sass --watch scss/styles.scss:css/styles.css"
},
"repository": {
"type": "git",
"url": "git@git.drupal.org:project/estore.git"
},
"keywords": [
"drupal",
"estore",
"bootstrap 3",
"scss",
"dart"
],
"author": "OPTASY",
"license": "ISC"
}
But there are still some JS libraries/dependencies that are not availabe in NPM and only available by other external repositories such as github or gitlab. I'll create this file to ease the site maintainer to download these libraries by adding the repositories set up in the composer.libraries.json
file to the site's composer.json
file
N/A
Create the composer.libraries.json
file
N/A
N/A
N/A
N/A