juxtapose 4.0.60 → 4.0.62
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/README.md +13 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,7 +32,19 @@ Once this is done, JSX can be used directly.
|
|
|
32
32
|
|
|
33
33
|
## Examples
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
There is a small development server that can be run from within the project's directory with the following command:
|
|
36
|
+
|
|
37
|
+
npm start
|
|
38
|
+
|
|
39
|
+
The examples will then be available at the following URL:
|
|
40
|
+
|
|
41
|
+
http://localhost:8888
|
|
42
|
+
|
|
43
|
+
The source for the examples can be found in the `src/examples.js` file and corresponding `src/example` folder. You are encouraged to try the examples whilst reading what follows. You can rebuild them on the fly with the following command:
|
|
44
|
+
|
|
45
|
+
npm run watch-debug
|
|
46
|
+
|
|
47
|
+
The development server will reload the page whenever you make changes.
|
|
36
48
|
|
|
37
49
|
## Building
|
|
38
50
|
|
|
@@ -41,12 +53,6 @@ Automation is done with [npm scripts](https://docs.npmjs.com/misc/scripts), have
|
|
|
41
53
|
npm run build-debug
|
|
42
54
|
npm run watch-debug
|
|
43
55
|
|
|
44
|
-
You can also start a small development server:
|
|
45
|
-
|
|
46
|
-
npm start
|
|
47
|
-
|
|
48
|
-
The examples will then be available at http://localhost:8888 and will reload automatically when changes are made.
|
|
49
|
-
|
|
50
56
|
## Contact
|
|
51
57
|
|
|
52
58
|
- james.smith@djalbat.com
|