The repo for Purrform's main BigCommerce store.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: update .gitignore and package.json scripts for theme cleanup

+5 -2
+3 -1
.gitignore
··· 24 24 [Dd]esktop.ini 25 25 config.stencil.json 26 26 secrets.stencil.json 27 - widget/node_modules 27 + widget/node_modules 28 + 29 + scripts
+2 -1
package.json
··· 65 65 "webpack-merge": "^5.8.0" 66 66 }, 67 67 "scripts": { 68 + "cleanup": "node scripts/cleanup-themes.js", 68 69 "start": "stencil start -c 1 -o", 69 - "publish": "stencil push -c 1 -a -d", 70 + "publish": "npm run cleanup && stencil push -c 1 -a", 70 71 "build": "npx webpack --config webpack.prod.js", 71 72 "buildDev": "npx webpack --config webpack.dev.js", 72 73 "lighthouse": "npx lighthouse --config-path=lighthouse-config.js --quiet --output json --chrome-flags=\"--headless\" $URL | jq '.audits | map_values(.rawValue)'",