Skip to content

Commit d90c99a

Browse files
authored
Merge pull request jsdrupal#9 from balsama/eval-experience
Evaluator improvements
2 parents 79e47fe + 2596152 commit d90c99a

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,13 @@ composer create-project jsdrupal/drupal-admin-ui-demo -s dev --prefer-dist
1717
```sh
1818
cd drupal-admin-ui-demo/docroot
1919
php core/scripts/drupal install
20-
../bin/drush en -y jsonapi admin_ui_support
20+
../vendor/bin/drush en -y jsonapi admin_ui_support
2121
php core/scripts/drupal server
2222
```
2323

24-
Drupal will be opened up in your default browser.
25-
To access the new interface go to ```http://localhost:51569/vfancy```.
26-
27-
Example URLs to visit:
24+
Drupal will be opened up in your default browser. Example URLs to visit:
2825
* ```/admin/people/permissions```
2926

30-
3127
# Updating
3228
```sh
3329
# All users can update the project dependencies using composer.

composer.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"cweagans/composer-patches": "^1.6",
1616
"drupal-composer/drupal-scaffold": "^2.2",
1717
"drupal/core": "~8.6",
18-
"drupal/jsonapi": "^1.13",
18+
"drupal/jsonapi": "1.13.0",
1919
"oomphinc/composer-installers-extender": "^1.1",
2020
"webflo/drupal-finder": "^1.0.0",
2121
"webmozart/path-util": "^2.3",
@@ -52,8 +52,7 @@
5252
],
5353
"post-update-cmd": [
5454
"@drupal-scaffold",
55-
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
56-
"DrupalProject\\composer\\ScriptHandler::linkAdminSupportModule"
55+
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
5756
]
5857
},
5958
"extra": {
@@ -72,12 +71,8 @@
7271
"enable-patching": true,
7372
"patches": {
7473
"drupal/core": {
75-
"Provide a single command to install & run Drupal": "https://www.drupal.org/files/issues/2018-03-24/2911319-171.patch",
76-
"Provide a script to install a Drupal testsite": "https://www.drupal.org/files/issues/2926633-115.patch"
74+
"Provide a single command to install & run Drupal": "https://www.drupal.org/files/issues/2018-04-11/2911319-2-191.patch"
7775
}
7876
}
79-
},
80-
"config": {
81-
"bin-dir": "bin/"
8277
}
8378
}

0 commit comments

Comments
 (0)