Skip to content

Commit 663e34f

Browse files
Update dependencies
1 parent 78a44cd commit 663e34f

File tree

7 files changed

+267
-138
lines changed

7 files changed

+267
-138
lines changed

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,31 +35,31 @@
3535
},
3636
"dependencies": {
3737
"@ampproject/remapping": "0.2.0",
38-
"acorn": "7.1.1",
38+
"acorn": "7.2.0",
3939
"acorn-walk": "7.1.1",
4040
"estree-walker": "2.0.1",
41-
"google-closure-compiler": "20200406.0.0",
41+
"google-closure-compiler": "20200517.0.0",
4242
"magic-string": "0.25.7",
43-
"uuid": "7.0.3"
43+
"uuid": "8.1.0"
4444
},
4545
"devDependencies": {
4646
"@types/acorn": "4.0.5",
4747
"@types/estree": "0.0.44",
48-
"@types/node": "12.12.35",
49-
"@types/uuid": "7.0.2",
48+
"@types/node": "14.0.6",
49+
"@types/uuid": "8.0.0",
5050
"ava": "2.4.0",
5151
"builtins": "3.0.1",
52-
"c8": "7.1.0",
53-
"codecov": "3.6.5",
52+
"c8": "7.1.2",
53+
"codecov": "3.7.0",
5454
"husky": "4.2.5",
55-
"lint-staged": "10.1.3",
55+
"lint-staged": "10.2.7",
5656
"np": "https://github.com/pixelastic/np/tarball/c3ab2e3b053c7da0ce40a572ca1616273ac080f8",
5757
"npm-run-all": "4.1.5",
58-
"prettier": "2.0.4",
58+
"prettier": "2.0.5",
5959
"rimraf": "3.0.2",
60-
"rollup": "2.6.1",
61-
"sirv-cli": "0.4.5",
62-
"typescript": "3.8.3"
60+
"rollup": "2.12.0",
61+
"sirv-cli": "0.4.6",
62+
"typescript": "3.9.3"
6363
},
6464
"lint-staged": {
6565
"*.ts": [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
export default {key:"value"}
2+
export default {key:"value", }

test/export-transpilation/fixtures/named-constant.esm.es5.js

Lines changed: 8 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/export-transpilation/fixtures/named-function.esm.es5.js

Lines changed: 8 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
console.log({0:"value"})
2+
console.log({0:"value", })
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22
let a = ["put", "add", "delete", "clear"];
33
export function SpreadExpression(){
4-
return {...a, get:() => console.log("get thing")};
4+
return {...a, get:() => console.log("get thing"), };
55
}

0 commit comments

Comments
 (0)