Skip to content

Commit

Permalink
Merge pull request #50 from EyeSeeTea/fix/yarn-build-folder-not-executed
Browse files Browse the repository at this point in the history
[Fix] `yarn build` missing yarn command on build-folder
  • Loading branch information
MiquelAdell authored Jun 19, 2024
2 parents 8332644 + 259ce7c commit 913c862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"craco-start": "craco start",
"prebuild": "yarn localize && yarn test",
"build-folder": "rm -rf build/ && d2-manifest package.json manifest.webapp && react-scripts build && yarn run manifest && cp -r i18n icon.png build",
"build": "yarn localize && build-folder && rm -f $npm_package_name.zip && cd build && zip --quiet -r ../$npm_package_name.zip *",
"build": "yarn localize && yarn build-folder && rm -f $npm_package_name.zip && cd build && zip --quiet -r ../$npm_package_name.zip *",
"build-importer": "REACT_APP_DATA_IMPORTER=true yarn build && yarn manifest-importer && rm -f $npm_package_name-importer.zip && cd build && zip -r ../$npm_package_name-importer.zip *",
"test": "jest --passWithNoTests",
"lint": "eslint src cypress --ext .js,.jsx,.ts,.tsx",
Expand Down

0 comments on commit 913c862

Please sign in to comment.