Skip to content

Commit

Permalink
fix: allow installation with --ignore-script (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan authored Aug 30, 2019
1 parent 5119f28 commit 336cef4
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions magi-p3-post.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"files": ["package.json"],
"files": [
"package.json",
"vaadin-usage-statistics.js"
],
"from": [
"\"license\": \"Apache-2.0\","
"\"license\": \"Apache-2.0\",",
"import './vaadin-usage-statistics-collect.js';"
],
"to": [
"\"license\": \"Apache-2.0\",\n\"scripts\": {\n\"postinstall\": \"node check.js\",\n\"disable\": \"npm config set @vaadin/vaadin-usage-statistics:disabled true && npm run postinstall\",\n\"enable\": \"npm config set @vaadin/vaadin-usage-statistics:disabled false && npm run postinstall\"\n},"
"\"license\": \"Apache-2.0\",\n\"scripts\": {\n\"postinstall\": \"node check.js\",\n\"disable\": \"npm config set @vaadin/vaadin-usage-statistics:disabled true && npm run postinstall\",\n\"enable\": \"npm config set @vaadin/vaadin-usage-statistics:disabled false && npm run postinstall\"\n},",
"export * from './vaadin-usage-statistics-collect.js';"
]
}

0 comments on commit 336cef4

Please sign in to comment.