From df59ef8b9ae8917e29b7d075498eb30f3a15c914 Mon Sep 17 00:00:00 2001 From: Michal Date: Wed, 15 Apr 2020 18:47:00 +0200 Subject: [PATCH] update babel updated --- pages.pl/common/babel.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pages.pl/common/babel.md b/pages.pl/common/babel.md index e86bf5ca82..431f4d836f 100644 --- a/pages.pl/common/babel.md +++ b/pages.pl/common/babel.md @@ -1,36 +1,36 @@ # babel -> A transpiler which converts code from JavaScript ES6/ES7 syntax to ES5 syntax. -> More information: . +> Transpiler, który konwertuje kod ze składni JavaScript ES6 / ES7 na składnię ES5. +> Więcej informacji: . -- Transpile a specified input file and output to `stdout`: +- Transpiluj określony plik wejściowy i dane wyjściowe do `stdout`: `babel {{path/to/file}}` -- Transpile a specified input file and output to a specific file: +- Transpiluj określony plik wejściowy i wyjście do określonego pliku: `babel {{path/to/input_file}} --out-file {{path/to/output_file}}` -- Transpile the input file every time it is changed: +- Transpiluj plik wejściowy przy każdej zmianie: `babel {{path/to/input_file}} --watch` -- Transpile a whole directory of files: +- Transpiluj cały katalog plików: `babel {{path/to/input_directory}}` -- Ignore specified comma-separated files in a directory: +- Zignoruj określone pliki oddzielone przecinkami w katalogu: `babel {{path/to/input_directory}} --ignore {{ignored_files}}` -- Transpile and output as minified JavaScript: +- Transpiluj i wypisz jako zminimalizowany JavaScript: `babel {{path/to/input_file}} --minified` -- Choose a set of presets for output formatting: +- Wybierz zestaw ustawień dla formatowania wyjściowego: `babel {{path/to/input_file}} --presets {{presets}}` -- Output all available options: +- Wyświetl wszystkie dostępne opcje: `babel --help`