Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  publish.sh

  Sprache: Shell
 

#!/bin/bash

# Publish script to be called by `npm publish` and not manually.
# See README.md
# This script will introduce changed which are going to be reverted
# automatically by `npm publish` by calling `publish-cleanup.sh`.

# Replace all ES Module import URL which only works within Firefox
# and make them compatible with Node environment.

if [ -n "$(git status -s -uno .)" ]; then
  echo "It looks like you have pending changes in reps/ folder."
  echo "You have to commit or reset them before running this command"
  exit 1
fi

for file in $(find . -name "*.mjs"); do
  sed -i -E 's#resource://devtools/client/shared/vendor/react.mjs#react#g' "$file"
  sed -i -E 's#resource://devtools/client/shared/vendor/react-dom-factories.mjs#react-dom-factories#g' "$file"
  sed -i -E 's#resource://devtools/client/shared/vendor/react-prop-types.mjs#prop-types#g' "$file"
done

if git grep "resource://devtools/client/shared/vendor/" "**.mjs"then
  echo "It looks like a new vendor module is used and should be handled by publish.sh";
  exit 1
fi

# Also remove all css declarations refering to a chrome URL
# (these chrome files aren't shipped in the npm package anyway)
for file in $(find . -name "*.css"); do
  sed -i '/chrome/d' "$file"
done

Messung V0.5 in Prozent
C=91 H=97 G=93

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Statistik
#Sources=277311
#Domains=752002