asana 1.0.3 → 1.0.4
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 +4 -4
- package/bower.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
> **Important:**
|
|
3
3
|
> Versions 1.X.X and earlier of this package are no longer supported. For new features and support, please upgrade to [the latest version](https://www.npmjs.com/package/asana).
|
|
4
4
|
>
|
|
5
|
-
>To view sample code for version 1, select the `node-sdk-v1` tab on a specific endpoint's page in the [Asana API reference](https://developers.asana.com/reference/rest-api-reference), or check the [v1 samples](https://github.com/Asana/node-asana/tree/v1.0.
|
|
5
|
+
>To view sample code for version 1, select the `node-sdk-v1` tab on a specific endpoint's page in the [Asana API reference](https://developers.asana.com/reference/rest-api-reference), or check the [v1 samples](https://github.com/Asana/node-asana/tree/v1.0.4/samples) directory on GitHub.
|
|
6
6
|
|
|
7
7
|
A JavaScript client (for both Node and browser) for the Asana API v1.0.
|
|
8
8
|
|
|
@@ -13,12 +13,12 @@ A JavaScript client (for both Node and browser) for the Asana API v1.0.
|
|
|
13
13
|
Install with npm:
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
|
-
npm install asana@1.0.
|
|
16
|
+
npm install asana@1.0.4 --save
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
### Browser
|
|
20
20
|
|
|
21
|
-
Include the v1.0.
|
|
21
|
+
Include the v1.0.4 release directly from GitHub.
|
|
22
22
|
|
|
23
23
|
```html
|
|
24
24
|
<script src="https://github.com/Asana/node-asana/releases/download/v1.03/asana-min.js"></script>
|
|
@@ -26,7 +26,7 @@ Include the v1.0.3 release directly from GitHub.
|
|
|
26
26
|
|
|
27
27
|
**OR:**
|
|
28
28
|
|
|
29
|
-
1. Download the v1.0.
|
|
29
|
+
1. Download the v1.0.4 distribution in [releases](https://github.com/Asana/node-asana/releases).
|
|
30
30
|
2. Make sure to serve it from your webserver.
|
|
31
31
|
3. Include it on the client from a `<script>` tag.
|
|
32
32
|
|
package/bower.json
CHANGED