Skip to content
This repository was archived by the owner on Apr 8, 2021. It is now read-only.

Commit 448fdfd

Browse files
committed
Version 2.0.6
1 parent 49193a1 commit 448fdfd

11 files changed

+6897
-611
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ build/Release
2525
# Dependency directory
2626
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
2727
node_modules
28-
28+
bower_components
2929
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
3030
*.iml
3131

.npmignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Logs
2+
logs
3+
*.log
4+
5+
# Runtime data
6+
pids
7+
*.pid
8+
*.seed
9+
10+
# Directory for instrumented libs generated by jscoverage/JSCover
11+
lib-cov
12+
13+
# Coverage directory used by tools like istanbul
14+
coverage
15+
16+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
17+
.grunt
18+
19+
# node-waf configuration
20+
.lock-wscript
21+
22+
# Compiled binary addons (http://nodejs.org/api/addons.html)
23+
build/Release
24+
25+
# Dependency directory
26+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
27+
node_modules
28+
29+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
30+
*.iml
31+
32+
## Directory-based project format:
33+
.idea/
34+
samples/
35+
bower_components/

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ Cloudinary provides URL and HTTP based APIs that can be easily integrated with a
3131
<script src="bower_components/cloudinary-core/cloudinary-core.js" type="text/javascript"></script>
3232
```
3333

34+
If you do not intend to use `lodash` in your own code, you can instead use the shrinkwrap version which includes a subset
35+
of the lodash functions. This reduces the loaded code by about 50%!
36+
37+
```html
38+
<script src="bower_components/cloudinary-core/cloudinary-core-shrinkwrap.js" type="text/javascript"></script>
39+
```
3440
### NPM
3541
The following instructions describe the installation of the **client-side libraries**. For the server side NodeJS library, see https://github.com/cloudinary/cloudinary_npm
3642

@@ -47,6 +53,8 @@ The following instructions describe the installation of the **client-side librar
4753
<script src="node_modules/cloudinary-core/cloudinary-core.js" type="text/javascript"></script>
4854
```
4955

56+
See comment above regarding the shrinkwrap version.
57+
5058
For the server side NPM library, please refer to https://github.com/cloudinary/cloudinary_npm.
5159

5260
## Setup

bower.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cloudinary-core",
3-
"version": "2.0.5",
3+
"version": "2.0.6",
44
"homepage": "http://cloudinary.com",
55
"authors": [
66
{
@@ -53,6 +53,7 @@
5353
"**/.*",
5454
"node_modules",
5555
"bower_components",
56+
"samples/",
5657
"test",
5758
"tests"
5859
]

0 commit comments

Comments
 (0)