Skip to content
This repository was archived by the owner on Feb 2, 2020. It is now read-only.

Commit 6449c29

Browse files
committed
initial commit
0 parents  commit 6449c29

File tree

6 files changed

+66
-0
lines changed

6 files changed

+66
-0
lines changed

LICENSE

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
The "New" BSD License:
2+
**********************
3+
4+
Copyright (c) 2005-2014, The Dojo Foundation
5+
All rights reserved.
6+
7+
Redistribution and use in source and binary forms, with or without
8+
modification, are permitted provided that the following conditions are met:
9+
10+
* Redistributions of source code must retain the above copyright notice, this
11+
list of conditions and the following disclaimer.
12+
* Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
* Neither the name of the Dojo Foundation nor the names of its contributors
16+
may be used to endorse or promote products derived from this software
17+
without specific prior written permission.
18+
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
23+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# dpointer-build
2+
3+
Build version of [ibm-js/dpointer](https://github.com/ibm-js/dpointer).
4+
5+
## Status
6+
7+
No official release yet.
8+
9+
## Licensing
10+
11+
This project is distributed by the Dojo Foundation and licensed under the ["New" BSD License](./LICENSE).
12+
All contributions require a [Dojo Foundation CLA](http://dojofoundation.org/about/claForm).

boot.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
require.config({
2+
"packages": [
3+
{
4+
"name": "dpointer",
5+
"location": "dpointer-build"
6+
}
7+
]
8+
});
9+
define(["dpointer/layer"], function(){});

bower.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "dpointer-build",
3+
"version": "0.1.1-dev",
4+
"ignore": [
5+
".jshintrc",
6+
".gitattributes",
7+
".travis.yml",
8+
"tests",
9+
"CONTRIBUTING.md"
10+
],
11+
"devDependencies": {
12+
"dpointer": "0.1.1-dev"
13+
}
14+
}

layer.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

layer.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)