Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
dmstern committed Nov 26, 2018
1 parent d9a95e0 commit 687b28a
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/views/HowTo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,20 +101,23 @@ export default class HowTo extends Vue {
this.data.companyScope = response.companyScope;
}
});
this.data.codes.push((url) => {
return `...
this.data.codes.push(
url => {
return `...
"publishConfig": {
"registry": "${url}"
}
...`
}, () => {
return `"files": [
...`;
},
() => {
return `"files": [
"assets"
"dist",
"cli.js"
"index.js"
]`
});
]`;
},
);
}
}
</script>
Expand Down

0 comments on commit 687b28a

Please sign in to comment.