-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 0.1.2.2: Support for List Ribbon Actions
- Loading branch information
Showing
64 changed files
with
1,650 additions
and
1,510 deletions.
There are no files selected for viewing
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,6 +1,6 @@ | ||
{ | ||
"name": "js-sites-core", | ||
"version": "0.1.2.1", | ||
"version": "0.1.2.2", | ||
"homepage": "https://github.com/olemp/js-sites-core", | ||
"authors": [ | ||
"olemp <[email protected]>", | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,19 @@ | ||
tsc --out ..\dist\pzl.sites.core.js .\pzl.sites.core.ts --removeComments | Out-Null | ||
Param( | ||
[switch]$OpenFolderOnComplete | ||
) | ||
$output = "..\dist\pzl.sites.core.js" | ||
Write-Host "" | ||
Write-Host "----------------------------------------------------------------------" -ForegroundColor Green | ||
Write-Host "Compiling dist '$($output)" -ForegroundColor Green | ||
Write-Host "----------------------------------------------------------------------" -ForegroundColor Green | ||
Write-Host "" | ||
tsc --out $output .\pzl.sites.core.ts --removeComments | ||
Write-Host "" | ||
Write-Host "----------------------------------------------------------------------" -ForegroundColor Green | ||
Write-Host "Creating minified dist using uglifyjs" -ForegroundColor Green | ||
Write-Host "----------------------------------------------------------------------" -ForegroundColor Green | ||
Write-Host "" | ||
uglifyjs --mangle --compress --output ..\dist\pzl.sites.core.min.js -- ..\dist\pzl.sites.core.js | Out-Null | ||
explorer.exe ..\dist | ||
if($OpenFolderOnComplete) { | ||
explorer.exe ..\dist | ||
} |
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,6 @@ | ||
declare module Pzl.Sites.Core.Model { | ||
interface ILoggingOptions { | ||
On: boolean; | ||
LoggingFolder: string; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
declare module Pzl.Sites.Core.Model { | ||
interface IObjectHandler { | ||
name: string; | ||
ProvisionObjects(objects); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
/// <reference path="model.d.ts" /> | ||
declare module Pzl.Sites.Core.Model { | ||
interface IOptions { | ||
WaitMessage?: IWaitMessageOptions; | ||
Logging?: ILoggingOptions; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
src/model/IWaitMessageOptions.ts → src/model/IWaitMessageOptions.d.ts
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/// <reference path='ILoggingOptions.d.ts' /> | ||
/// <reference path='IObjectHandler.d.ts' /> | ||
/// <reference path='IOptions.d.ts' /> | ||
/// <reference path='IWaitMessageOptions.d.ts' /> | ||
/// <reference path='ObjectHandlerBase.ts' /> | ||
/// <reference path='ProvisioningStep.ts' /> |
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
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.