Skip to content

Commit

Permalink
fix: address postinstall bug
Browse files Browse the repository at this point in the history
  • Loading branch information
blackfalcon committed Jan 23, 2020
1 parent ea8c465 commit 479e055
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@
},
"scripts": {
"build": "npm-run-all sassRender cssLint jsonLint",
"postinstall": "node scripts/postinstall.js",
"postinstall": "node dist/postinstall.js",
"buildTokens": "node scripts/tokenScript.js",
"cssLint": "stylelint './src/*.css'",
"dev": "npm-watch buildTokens | npm-watch sassRender-w",
"dist": "npm-run-all distTokens sassRender cssLint jsonLint",
"distJS": "copyfiles -u 1 -V './src/**/*.js' ./dist",
"distJS": "copyfiles -u 1 -V './scripts/postinstall.js' './src/**/*.js' ./dist",
"distTokens": "node scripts/tokenScriptCustom.js",
"jsonLint": "jsonlint -q ./src/ods-shape.json",
"sassRender": "sass-render src/*.css src/tokens/*.scss",
Expand All @@ -111,7 +111,7 @@
"processImportsCanonical": "gulp processImportsCanonical",
"processImportsVariable": "gulp processImportsVariable",
"reprocessClean": "gulp reprocessClean",
"ciBuild": "npm-run-all buildTokens processSrc processDemo processImportsCanonical processImportsVariable stylefluxCanonical stylefluxVariable reprocessClean distTokens sassRender distJS",
"ciBuild": "npm-run-all buildTokens processSrc processDemo processImportsCanonical processImportsVariable stylefluxCanonical stylefluxVariable reprocessClean distTokens sassRender distJS postinstall",
"devBuild": "npm-run-all buildTokens processSrc processDemo distTokens sassRender distJS"
},
"husky": {
Expand Down

0 comments on commit 479e055

Please sign in to comment.