-
-
Notifications
You must be signed in to change notification settings - Fork 516
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert to Typescript #228
Merged
Merged
Changes from 18 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
1e813b1
babelify compiled source, and don't minify for distribution
davidgoli d33908c
make some progress converting
davidgoli eb9695f
make dist folder self-sufficient
nickarora 2ff3eeb
remove jquery manual import
nickarora 03fa0d4
clean up formatting on webpack config
nickarora 554a9ac
index.js => rrule.js
nickarora 2606a8d
fix license warning
nickarora 586c059
fix rrule & rruleset
davidgoli 3a4e675
Merge pull request #1 from substantial/streamline-webpack-bundle
davidgoli 1bb5593
package es6 & es6 outputs
davidgoli 4b63cae
Merge branch 'master' into convert-to-typescript
davidgoli abe919f
get tests passing
davidgoli 076c0b5
rebuild
davidgoli 7d83ba8
fix demo
davidgoli 5fce53f
ensure output is built to the correct target
davidgoli a3a6748
add extra typing info
davidgoli 4874534
remove old index file
davidgoli 83ef28a
use main & module appropriately
davidgoli e743349
fix nlp import
davidgoli e7078e9
export more secondary types
davidgoli 1d498b4
add RRuleStrOptions
davidgoli 91a22ff
remove beta babel; fix lint warnings
davidgoli 036a08c
make Options non-optional; tighten up types
davidgoli 7c15462
streamline .d.ts output
davidgoli 7efa064
remove a ts-ignore
davidgoli 5ceef88
get rid of some anys
davidgoli 5eeac9e
tighten up types around iterators
davidgoli ed63fd0
update README
davidgoli 2056612
get rid of any in Parser
davidgoli 6539cfb
get rid of any in ToText
davidgoli 86a1d68
extract IterInfo
davidgoli 9075c58
isolate some ugliness
davidgoli a22982b
reduce scope of many variables
davidgoli 72e36c8
extract initializeOptions
davidgoli d984ce0
extract parseOptions
davidgoli fc2cd1f
define ParsedOptions and remove unnecessary casting
davidgoli 8c92c8b
plb -> notEmpty
davidgoli 481a646
Merge remote-tracking branch 'upstream/master' into convert-to-typesc…
davidgoli 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
node_modules/ | ||
bower_components/ | ||
.idea | ||
.vscode | ||
.vscode | ||
*.log |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
RRule = rrule.RRule | ||
|
||
getFormValues = ($form) -> | ||
paramObj = {} | ||
$.each $form.serializeArray(), (_, kv) -> | ||
|
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
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.
💛 I don't think its mentioned anywhere in the README but we should point out that you can use
to pull in RRule that requires no transpiling