Skip to content

Commit abdba9b

Browse files
committed
Prepare 2.0 release
1 parent 038db39 commit abdba9b

4 files changed

Lines changed: 47 additions & 5 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@ ehthumbs.db
55
Desktop.ini
66
$RECYCLE.BIN/
77
*.tmp.txt
8-
.DS_Store
8+
.DS_Store
9+
10+
*.nupkg

bower.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "angular-winjs",
3+
"version": "2.0.0",
4+
"homepage": "https://github.com/winjs/angular-winjs",
5+
"authors": [
6+
"Microsoft Corporation and other contributors"
7+
],
8+
"description": "This code is a wrapper which facilitates usage of WinJS UI controls in an Angular application.",
9+
"main": "js/angular-winjs.js",
10+
"keywords": [
11+
"winjs",
12+
"angular",
13+
"AngularJS"
14+
],
15+
"license": "MIT",
16+
"ignore": [
17+
"**/.*",
18+
"node_modules",
19+
"bower_components",
20+
"test",
21+
"tests"
22+
]
23+
}

nuget/Angular.WinJS.2.0.0.nuspec

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
3+
<metadata>
4+
<id>Angular.WinJS</id>
5+
<version>2.0.0</version>
6+
<authors>Microsoft Corporation and other contributors</authors>
7+
<licenseUrl>https://raw.githubusercontent.com/winjs/angular-winjs/master/License.txt</licenseUrl>
8+
<projectUrl>https://github.com/winjs/angular-winjs</projectUrl>
9+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10+
<description>This code is a wrapper which facilitates usage of WinJS UI controls in an Angular application.</description>
11+
<copyright>Microsoft Corporation. All Rights Reserved</copyright>
12+
<tags>winjs angular</tags>
13+
</metadata>
14+
<files>
15+
<file src="..\js\angular-winjs.js" target="content\angular-winjs.js" />
16+
</files>
17+
</package>

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "angular-winjs",
33
"title": "Angular Wrapper for Windows Library for JavaScript (WinJS)",
4-
"description": "This code is a wrapper which facilitates usage of WinJS UI controls in an Angular Windows application.",
4+
"description": "This code is a wrapper which facilitates usage of WinJS UI controls in an Angular application.",
55
"homepage": "https://github.com/winjs/angular-winjs",
66
"author": {
7-
"name": "Microsoft Open Technologies, Inc. and other contributors",
7+
"name": "Microsoft Corporation and other contributors",
88
"url": "https://github.com/winjs/angular-winjs/graphs/contributors"
99
},
1010
"license": "MIT",
11-
"version": "0.9.0",
11+
"version": "2.0.0",
1212
"main": "js/angular-winjs.js",
1313
"scripts": {
1414
"test": "karma start karma.config.js"
@@ -34,7 +34,7 @@
3434
"dependencies": {
3535
"angular": "~1.3.13"
3636
},
37-
"devDependencies": {
37+
"devDependencies": {
3838
"angular-mocks": "~1.3.13",
3939
"karma": "~0.10"
4040
}

0 commit comments

Comments
 (0)