Skip to content

Commit

Permalink
chore: force overwrite in prepare (#1364)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Aug 15, 2022
1 parent 351f321 commit 5eec47e
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion dictionaries/ar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"test-samples": "cspell -v -c ./cspell-ext.json --local=ar,en \"samples/**\"",
"test": "yarn run test-ar && yarn run test-samples",
"sync": "./scripts/sync.sh && yarn lint",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "yarn run conditional-build && yarn test"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion dictionaries/de_CH/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"test-de": "hunspell-reader words -n 1000 \"src/hunspell/index.dic\" | cspell -v -c ./cspell-ext.json --local=de --languageId=* stdin",
"test-samples": "cspell -v -c ./cspell-ext.json --local=de,en \"samples/**\"",
"test": "yarn run test-de && yarn run test-samples",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "yarn run conditional-build && yarn test"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion dictionaries/de_DE/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"test-de-old": "hunspell-reader words -n 1000 \"src/German_de_DE.dic\" | cspell -v -c ./cspell-ext.json --local=de --languageId=* stdin",
"test-samples": "cspell -v -c ./cspell-ext.json --local=de,en \"samples/**\"",
"test": "yarn run test-de && yarn run test-samples && yarn run test-de-old",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "yarn run conditional-build && yarn test"
},
"scriptsX": {
Expand Down
2 changes: 1 addition & 1 deletion dictionaries/en_GB-MIT/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"compile": "cat source-files.txt | xargs cspell-tools-cli compile --trie3 -x compound --merge en_GB -o . --no-compress && yarn run gen-checksum",
"conditional-build": "yarn run --silent checksum || yarn run build",
"gen-checksum": "cat source-files.txt source-dependencies.txt | sort -u | xargs shasum > checksum.txt",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "echo pre-publish",
"test-dict": "head -n 1000 \"./src/wordsEnGb.txt\" | cspell -v -c ./cspell-ext.json --local=en_gb --languageId=* stdin",
"test-text": "cspell -v -c ./cspell-ext.json --local=en_gb --languageId=* \"tests/*.txt\"",
Expand Down
2 changes: 1 addition & 1 deletion dictionaries/en_GB/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"compile": "cat source-files.txt | xargs cspell-tools-cli compile --trie3 -x compound --merge en_GB -o . --no-compress && yarn run gen-checksum",
"conditional-build": "yarn run sync && yarn run --silent checksum || yarn run build",
"gen-checksum": "cat source-files.txt source-dependencies.txt | sort -u | xargs shasum > checksum.txt",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "echo pre-publish",
"test-dict": "head -n 1000 \"./src/wordsEnGb.txt\" | cspell -v -c ./cspell-ext.json --local=en_gb --languageId=* stdin",
"test-text": "cspell -v -c ./cspell-ext.json --local=en_gb --languageId=* \"tests/*.txt\"",
Expand Down
2 changes: 1 addition & 1 deletion dictionaries/en_US/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"test-text": "cspell -v -c ./cspell-ext.json --local=en --languageId=* \"tests/*.txt\"",
"gen-checksum": "cat source-files.txt source-dependencies.txt | sort -u | xargs shasum > checksum.txt",
"test": "yarn run test-dict && yarn run test-text",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "echo pre-publish"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion dictionaries/es_ES/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"test-dict": "hunspell-reader words -n 1000 \"src/hunspell/index.dic\" | cspell -v -c ./cspell-ext.json --local=es --languageId=* stdin",
"test-text": "cspell",
"test": "yarn run test-dict && yarn run test-text",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "echo pre-publish"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion dictionaries/et-EE/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"test-text": "cspell -v -c ./cspell-ext.json --local=et --languageId=* \"samples/**\"",
"gen-checksum": "cat source-files.txt source-dependencies.txt | sort -u | xargs shasum > checksum.txt",
"test": "yarn run test-dict && yarn run test-text",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "echo pre-publish"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion dictionaries/fr_FR/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"compile": "cat source-files.txt | xargs cspell-tools-cli compile --trie3 -x compound --merge fr-fr -o . --no-compress && yarn run gen-checksum",
"conditional-build": "yarn run --silent checksum || yarn run build",
"gen-checksum": "cat source-files.txt source-dependencies.txt | sort -u | xargs shasum > checksum.txt",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "echo pre-publish",
"test-dict": "hunspell-reader words -n 1000 \"./src/hunspell-french-dictionaries-v7.0/fr-classique.dic\" | cspell -v -c ./cspell-ext.json \"--local=fr\" \"--languageId=*\" stdin",
"test-text": "cspell -v -c ./cspell-ext.json --local=fr --languageId=* \"samples/**\"",
Expand Down
2 changes: 1 addition & 1 deletion dictionaries/fr_FR_90/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"compile": "cat source-files.txt | xargs cspell-tools-cli compile --trie3 -x compound --merge fr-reforme1990 -o . --no-compress && yarn run gen-checksum",
"conditional-build": "yarn run --silent checksum || yarn run build",
"gen-checksum": "cat source-files.txt source-dependencies.txt | sort -u | xargs shasum > checksum.txt",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "echo pre-publish",
"test-dict": "hunspell-reader words -n 1000 \"./src/hunspell-french-dictionaries-v7.0/fr-reforme1990.dic\" | cspell -v -c ./cspell-ext.json \"--local=fr\" \"--languageId=*\" stdin",
"test-text": "cspell -v -c ./cspell-ext.json --local=fr --languageId=* \"samples/**\"",
Expand Down
2 changes: 1 addition & 1 deletion dictionaries/nl_NL/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"test-dict": "hunspell-reader words -n 1000 \"src/hunspell/index.dic\" | cspell -v -c ./cspell-ext.json --local=nl --languageId=* stdin",
"test-text": "cspell",
"test": "yarn run test-dict && yarn run test-text",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "echo pre-publish"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion dictionaries/pt_BR/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"test-dict": "hunspell-reader words -n 1000 \"src/hunspell/index.dic\" | cspell -v -c ./cspell-ext.json --local=pt --languageId=* stdin",
"test-text": "cspell",
"test": "yarn run test-dict && yarn run test-text",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "echo pre-publish"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion dictionaries/ru_RU/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"test-russian": "hunspell-reader words -n 1000 \"src/Russian.dic\" | cspell -v -c ./cspell-ext.json --local=ru --languageId=* stdin",
"test-samples": "cspell -v -c ./cspell-ext.json --local=ru,en \"samples/**\"",
"test": "yarn run test-ru_ru && yarn run test-russian && yarn run test-samples",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "yarn run conditional-build && yarn test"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion dictionaries/sl_SI/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"compile": "cat source-files.txt | xargs cspell-tools-cli compile --trie3 -x compound --merge sl_si -o . --no-compress && yarn run gen-checksum",
"conditional-build": "yarn run --silent checksum || yarn run build",
"gen-checksum": "cat source-files.txt source-dependencies.txt | sort -u | xargs shasum > checksum.txt",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "echo pre-publish",
"test-dict": "hunspell-reader words -n 1000 \"./src/hunspell-french-dictionaries-v7.0/fr-classique.dic\" | cspell -v -c ./cspell-ext.json \"--local=fr\" \"--languageId=*\" stdin",
"test-text": "cspell -v -c ./cspell-ext.json --local=sl \"samples/**\"",
Expand Down
2 changes: 1 addition & 1 deletion dictionaries/sv/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"test-sv": "hunspell-reader words -n 1000 \"src/ooo-swedish-dict-2-42/dictionaries/sv_SE.dic\" | tail -n 200 | cspell -v -c ./cspell-ext.json --local=sv --languageId=* stdin",
"test-samples": "cspell -v -c ./cspell-ext.json --local=sv,en \"samples/**\"",
"test": "yarn run test-sv && yarn run test-samples",
"prepare": "gzip -k *.trie",
"prepare": "gzip -f -k *.trie",
"prepublishOnly": "yarn run conditional-build && yarn test"
},
"repository": {
Expand Down

0 comments on commit 5eec47e

Please sign in to comment.