mirror of
https://github.com/kiwix/kiwix-js-pwa.git
synced 2025-08-04 03:48:41 -04:00
13 lines
367 B
Bash
13 lines
367 B
Bash
#!/bin/bash
|
|
|
|
# Delete gitignore entry for the dist folder
|
|
sed -i "/^\/dist\/$/d" .gitignore
|
|
|
|
# Replace the /node_modules*/ entry in gitignore with the following
|
|
sed -i 's|/node_modules\*/|/node_modules/*\
|
|
!/node_modules/jquery\
|
|
/node_modules/jquery/*\
|
|
!/node_modules/jquery/dist\
|
|
/node_modules/jquery/dist/*\
|
|
!/node_modules/jquery/dist/jquery.slim.min.*|' .gitignore
|