Skip to content

Commit

Permalink
update deps, fix for #222
Browse files Browse the repository at this point in the history
  • Loading branch information
spencermountain committed Aug 28, 2020
1 parent a611956 commit d8cd0b6
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 77 deletions.
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This project follows semVer, where:
### v6.6.3
- support for 'today' param with null inputs
- support for 'today' param with 'today/tonight' inputs
- interpret empty-string input like null input (as now)
- interpret empty-string input like null input (as 'now')

### v6.6.2

Expand Down
130 changes: 58 additions & 72 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.11.0",
"@babel/core": "7.11.4",
"@babel/preset-env": "7.11.0",
"amble": "1.1.0",
"rollup": "2.23.0",
"rollup": "2.26.7",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize-check": "0.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "6.1.0",
"rollup-plugin-terser": "7.0.0",
"shelljs": "0.8.4",
"tap-dancer": "0.2.0",
"tape": "5.0.1",
Expand Down
2 changes: 1 addition & 1 deletion types/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export interface Spacetime {
/** get the zero-based month-number (0-11). */
month(): number
/** set the zero-based month-number (0-11). Also accepts 'June', or 'oct'. */
month(value: string): Spacetime
month(value: string | number): Spacetime

/** get the 4-digit year as an integer */
year(): number
Expand Down

0 comments on commit d8cd0b6

Please sign in to comment.