mirror of
https://github.com/bower/bower.git
synced 2026-02-04 02:54:56 -05:00
A unit of work is a simple storage with write lock/unlock. The manager/package now share a unit of work instance. The unit of work is used to prevent shared dependencies from being cloned/copied "at the same time" fixing issue #81. The prune and version resolving algorithm was also not correct. It now resolves versions correctly, fixing issue #57. - Fix I/O errors caused by copying/clone repos simultaneously to the same dest. - Optimize the clone/copy step by avoiding it if the last resolved resource is the same. - Fix failing test (at least on my windows machine) - Add some more tests - Fix CS.
8 lines
217 B
JSON
8 lines
217 B
JSON
{
|
|
"name": "myproject",
|
|
"version": "1.0.0",
|
|
"dependencies": {
|
|
"package-bootstrap": "git://github.com/fat/package-bootstrap.git#~2.0.0",
|
|
"jquery": "git://github.com/maccman/package-jquery.git#v1.8.1"
|
|
}
|
|
} |