-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from ecomfe/dev
v0.2.2
- Loading branch information
Showing
56 changed files
with
3,414 additions
and
558 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"rules": { | ||
"no-else-return": 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
dep | ||
node_modules | ||
npm-debug.log | ||
.npmignore | ||
.DS_Store | ||
test/coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"baseUrl": "src", | ||
"paths": {}, | ||
"packages": [ | ||
{ | ||
"name": "ef", | ||
"location": "../dep/ef/3.1.0-beta.2/src", | ||
"main": "main" | ||
}, | ||
{ | ||
"name": "eoo", | ||
"location": "../dep/eoo/0.1.1/src", | ||
"main": "main" | ||
}, | ||
{ | ||
"name": "er", | ||
"location": "../dep/er/3.1.0-beta.5/src", | ||
"main": "main" | ||
}, | ||
{ | ||
"name": "er-track", | ||
"location": "../dep/er-track/0.9.1/src", | ||
"main": "main" | ||
}, | ||
{ | ||
"name": "esui", | ||
"location": "../dep/esui/3.1.0-beta.3/src", | ||
"main": "main" | ||
}, | ||
{ | ||
"name": "etpl", | ||
"location": "../dep/etpl/3.0.0/src", | ||
"main": "main" | ||
}, | ||
{ | ||
"name": "mini-event", | ||
"location": "../dep/mini-event/1.0.2/src", | ||
"main": "main" | ||
}, | ||
{ | ||
"name": "moment", | ||
"location": "../dep/moment/2.7.0/src", | ||
"main": "moment" | ||
}, | ||
{ | ||
"name": "underscore", | ||
"location": "../dep/underscore/1.6.0/src", | ||
"main": "underscore" | ||
}, | ||
{ | ||
"name": "urijs", | ||
"location": "../dep/urijs/1.12.0/src", | ||
"main": "URI" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,35 @@ | ||
{ | ||
"name": "bat-ria", | ||
"version": "0.2.1", | ||
"description": "RIA extension for Brand Ads Team", | ||
"main": "main.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ecomfe/bat-ria.git" | ||
}, | ||
"keywords": [ | ||
"RIA", | ||
"esui", | ||
"er" | ||
], | ||
"dependencies": { | ||
"er": ">=3.1.0-beta.3", | ||
"esui": ">=3.1.0-beta.3", | ||
"ef": "3.1.x", | ||
"er-track": "~0.9.1", | ||
"underscore": ">=1.6.0", | ||
"moment": "2.x", | ||
"etpl": ">=2.0.8", | ||
"urijs": ">=1.12.0" | ||
}, | ||
"author": "Justineo, chestnutchen, leeight", | ||
"license": "BSD-2-Clause", | ||
"bugs": { | ||
"url": "https://github.com/ecomfe/bat-ria/issues" | ||
}, | ||
"homepage": "https://github.com/ecomfe/bat-ria" | ||
"name": "bat-ria", | ||
"version": "0.2.2", | ||
"description": "RIA extension for Brand Ads Team", | ||
"main": "main.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ecomfe/bat-ria.git" | ||
}, | ||
"keywords": [ | ||
"RIA", | ||
"esui", | ||
"er" | ||
], | ||
"edp": { | ||
"dependencies": { | ||
"er": ">=3.1.0-beta.3", | ||
"esui": ">=3.1.0-beta.3", | ||
"ef": "3.1.x", | ||
"er-track": "~0.9.1", | ||
"underscore": ">=1.6.0", | ||
"moment": "2.x", | ||
"etpl": ">=2.0.8", | ||
"urijs": ">=1.12.0", | ||
"eoo": "~0.0.9", | ||
"mini-event": "~1.0.2" | ||
} | ||
}, | ||
"author": "Justineo, chestnutchen, leeight", | ||
"license": "BSD-2-Clause", | ||
"bugs": { | ||
"url": "https://github.com/ecomfe/bat-ria/issues" | ||
}, | ||
"homepage": "https://github.com/ecomfe/bat-ria" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,6 @@ | |
// text colors | ||
@bat-text-blue: #0c3ca0; | ||
|
||
|
||
/** | ||
* Custom normalize | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.