Browse Source

Bump version and update README.

dom111 2 years ago
parent
commit
65d65ebfe1
2 changed files with 11 additions and 7 deletions
  1. 10 6
      README.md
  2. 1 1
      package.json

+ 10 - 6
README.md

@@ -61,18 +61,22 @@ and navigate to `http://localhost:8080/`.
 
 If you feel this can be improved (I'm certain it can!), please feel free to fork it and submit a PR.
 
-To start making changes, ensure you install all the dependencies:
+Localisation would be a great start if you'd like to help!
 
-    yarn install # or npm install
+To start making changes, ensure you install all the dependencies and build the application:
+
+    make build
 
 After making changes, ensure you rebuild the application:
 
-    yarn build # or npm run build
+    make build
 
 Once your changes have compiled you can test using the Docker container.
 
-### Unit Tests
+### Tests
 
-To run the unit tests:
+To run the unit and functional tests:
 
-    docker-compose run --workdir=/src --rm test yarn test
+    make build
+    docker-compose up -d
+    make test

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "webdav-js",
-  "version": "2.0.0",
+  "version": "2.1.0",
   "description": "WebDAV functionality intended for use as a bookmarklet or to make a simple Apache webserver an interactive WebDAV environment.",
   "repository": {
     "type": "git",