Skip to content

Commit

Permalink
Update some npm packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ms2ger committed Feb 25, 2022
1 parent ba29843 commit 0efa5d7
Show file tree
Hide file tree
Showing 7 changed files with 1,383 additions and 2,382 deletions.
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
},
"homepage": "https://github.com/tc39/proposal-temporal#readme",
"devDependencies": {
"marked": "^4.0.7",
"marked": "^4.0.12",
"mkdirp": "^1.0.4",
"prismjs": "^1.25.0"
"prismjs": "^1.27.0"
}
}
3,691 changes: 1,328 additions & 2,363 deletions package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
},
"main": "polyfill/lib/index.mjs",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"ecmarkup": "^9.7.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"ecmarkup": "^10.0.2",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"mkdirp": "^1.0.4",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
"typescript": "^4.5.5"
},
"scripts": {
"test": "cd polyfill && npm install && npm test && npm run test-cookbook && npm run test262",
Expand Down
20 changes: 10 additions & 10 deletions polyfill/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,24 +68,24 @@
"es-abstract": "^1.19.1"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@pipobscure/demitasse": "^1.0.10",
"@pipobscure/demitasse-pretty": "^1.0.10",
"@pipobscure/demitasse-run": "^1.0.10",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-replace": "^3.0.0",
"c8": "^7.10.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"c8": "^7.11.0",
"codecov": "^3.8.2",
"core-js": "^3.19.3",
"core-js": "^3.21.1",
"full-icu": "^1.4.0",
"nyc": "^15.1.0",
"rollup": "^2.61.1",
"rollup": "^2.68.0",
"rollup-plugin-terser": "^7.0.2",
"test262-harness": "^9.0.0",
"timezones.json": "^1.5.3",
"timezones.json": "^1.6.1",
"uuid": "^8.3.2"
},
"engines": {
Expand Down
35 changes: 35 additions & 0 deletions spec/biblio.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
{
"https://tc39.es/ecma262/": [
{
"type": "clause",
"number": "Time Values and Time Range",
"id": "sec-time-values-and-time-range"
},
{
"type": "clause",
"number": "Year Number",
"id": "sec-year-number"
},
{
"type": "clause",
"number": "Month Number",
"id": "sec-month-number"
},
{
"type": "clause",
"number": "Date Number",
"id": "sec-date-number"
},
{
"type": "clause",
"number": "Week Day",
"id": "sec-week-day"
},
{
"type": "clause",
"number": "Hours, Minutes, Second, and Milliseconds",
"id": "sec-hours-minutes-second-and-milliseconds"
},
{
"type": "clause",
"number": "LocalTZA",
"id": "sec-local-time-zone-adjustment"
},
{
"type": "op",
"aoid": "CodePointsToString",
Expand Down
2 changes: 1 addition & 1 deletion spec/duration.html
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,7 @@ <h1>TemporalDurationToString ( _years_, _months_, _weeks_, _days_, _hours_, _min
1. Set _timePart_ to the string concatenation of abs(_hours_) formatted as a decimal number and the code unit 0x0048 (LATIN CAPITAL LETTER H).
1. If _minutes_ is not 0, then
1. Set _timePart_ to the string concatenation of _timePart_, abs(_minutes_) formatted as a decimal number, and the code unit 0x004D (LATIN CAPITAL LETTER M).
1. If any of _seconds_, _milliseconds_, _microseconds_, and _nanoseconds_ are not 0; or _years_, _months_, _weeks_, _days_, _hours_, and _minutes_ are all 0; or _precision_ is not *"auto"*; then
1. If any of _seconds_, _milliseconds_, _microseconds_, and _nanoseconds_ are not 0; or _years_, _months_, _weeks_, _days_, _hours_, and _minutes_ are all 0; or _precision_ is not *"auto"*, then
1. Let _fraction_ be abs(_milliseconds_) × 10<sup>6</sup> + abs(_microseconds_) × 10<sup>3</sup> + abs(_nanoseconds_).
1. Let _decimalPart_ be _fraction_ formatted as a nine-digit decimal number, padded to the left with zeroes if necessary.
1. If _precision_ is *"auto"*, then
Expand Down
1 change: 1 addition & 0 deletions update_deps.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# root folder dependencies
npx npm-check-updates -u
npm install

# polyfill dependencies
# NOTE: we don't update demitasse because our tests aren't compatible with its latest version
Expand Down

0 comments on commit 0efa5d7

Please sign in to comment.