This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Updates to support Windows #185
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
d76511e
Updates to support Windows
0bb6c7b
Update angular (#189)
Blackbaud-PatrickOFriel a7c3277
updates for rc.0 release (#190)
Blackbaud-PatrickOFriel 189eb63
Omnibar config (#193)
314aefd
Fixed codelyzer path (#192)
Blackbaud-SteveBrush 28830ba
Ignore public directory when generating components (#187)
Blackbaud-SteveBrush 424672f
Plugin File Processor should not check directories (#186)
Blackbaud-SteveBrush 1085d54
Updated CHANGELOG.md and package.json for 1.0.0-rc.1 (#194)
6de9f1f
Updated template branch, bug fix for component pattern (#195)
Blackbaud-SteveBrush ec53b11
Merge branch 'master' into windows-build
Blackbaud-SteveBrush 9e52340
Release 1.0.0 rc.2 (#196)
Blackbaud-SteveBrush b9f8688
Remove extra s. (#197)
blackbaud-johnly 256d4b8
Fixed type error, updated SKY UX (#199)
Blackbaud-SteveBrush db62d70
Release 1.0.0 rc.3 (#200)
Blackbaud-SteveBrush af9050a
More fixes to support Windows
806c69c
Merge branch 'windows-build' of github.com:blackbaud/skyux-builder in…
978813f
Param functionality (#201)
4272474
Fixed `skyux test/watch` performance (#202)
Blackbaud-SteveBrush 3ed462a
Release 1.0.0-rc.4 (#207)
Blackbaud-SteveBrush 7fcfe14
Added to skyux builder (#204)
Blackbaud-SandhyaRajasabeson 5454e9a
Updated package dependencies (#208)
Blackbaud-SteveBrush 9320118
Add hash routing option for easy mode. (#206)
Blackbaud-AdamHickey 3846c64
Updates rc5 (#209)
Blackbaud-PatrickOFriel 7c58a14
Capitalize Angular. (#211)
blackbaud-johnly f7c24e9
Wrote failing test. Then made config property public for template (#…
179f34d
Resolved merge conflicts
5283566
Merge branch 'master' into windows-build
2eb9ed7
Merge branch 'master' into windows-build
cc60be1
Merge branch 'master' into windows-build
Blackbaud-SteveBrush 5759425
Merge branch 'master' into windows-build
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
"main": "index.js", | ||
"scripts": { | ||
"coverage": "npm run coverage:builder && npm run coverage:runtime && npm run coverage:src-app", | ||
"coverage:builder": "istanbul cover --report=html --dir=./coverage/builder jasmine JASMINE_CONFIG_PATH=jasmine.json", | ||
"coverage:builder": "istanbul cover --report=html --dir=./coverage/builder ./node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=jasmine.json", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Following instructions from https://github.com/gotwarlost/istanbul#usage-on-windows |
||
"coverage:runtime": "node ./utils/cli-test.js dev-runtime", | ||
"coverage:src-app": "node ./utils/cli-test.js dev-src-app", | ||
"e2e": "webdriver-manager update && protractor ./config/protractor/protractor-dev.conf.js", | ||
|
@@ -96,11 +96,13 @@ | |
"zone.js": "0.8.10" | ||
}, | ||
"devDependencies": { | ||
"cross-spawn": "5.1.0", | ||
"istanbul": "0.4.5", | ||
"jasmine": "2.6.0", | ||
"jscs": "3.0.7", | ||
"jshint": "2.9.4", | ||
"mock-require": "2.0.2", | ||
"proxyquire": "1.8.0" | ||
"proxyquire": "1.8.0", | ||
"rimraf": "2.6.1" | ||
} | ||
} |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This rule validates
LF
vsCRLF
. Since we don't specify default line-endings via a.gitattributes
file, this rule will fail when someone on Windows attempts to contribute code.