Skip to content

Commit 1ff16ba

Browse files
committed
Updated EaselJS file naming
1 parent 5438e86 commit 1ff16ba

File tree

7 files changed

+32
-2
lines changed

7 files changed

+32
-2
lines changed

docs/EaselJS_docs-0.8.2.zip

-1.17 MB
Binary file not shown.

lib/README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,13 @@ and shared caching across sites.
1010

1111

1212
# libraries
13-
**easeljs-VERSION.min.js** contains minified versions of all of the EaselJS classes (comments and white space stripped).
14-
**easeljs-VERSION.combined.js** contains all the EaselJS classes, including whitespace and comments.
13+
* **easeljs.js** the most recent _tagged_ version of all the EaselJS classes.
14+
* **easeljs.min.js** the most recent tagged version, minified and stripped of comments and whitespace.
15+
* **easeljs-NEXT.js** contains the _latest_ EaselJS classes.
16+
* **easeljs-NEXT.min.js** is a minified version of the _latest updates_ to the library.
17+
18+
Note that previous versions also had a webgl library, but it has been replaced by `StageGL`, which is included in the
19+
minified source.
1520

1621

1722
# license

package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "easeljs",
3+
"version": "1.0.0",
4+
"description": "EaselJS is a library for building high-performance interactive 2D content in HTML5. It provides a feature-rich display list to allow you to manipulate and animate graphics. It also provides a robust interactive model for mouse and touch interactions.",
5+
"main": "lib/easeljs.js",
6+
"directories": {
7+
"doc": "docs",
8+
"example": "examples",
9+
"lib": "lib",
10+
"test": "tests"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/CreateJS/EaselJS.git"
15+
},
16+
"keywords": [
17+
"canvas", "webgl", "graphics", "animation", "html5"
18+
],
19+
"author": "gskinner.com, inc.",
20+
"license": "MIT",
21+
"bugs": {
22+
"url": "https://github.com/CreateJS/EaselJS/issues"
23+
},
24+
"homepage": "https://createjs.com/easeljs/"
25+
}

0 commit comments

Comments
 (0)