-
-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
And add a test. Updates #5764
- Loading branch information
Showing
8 changed files
with
233 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
title: Babel | ||
description: Hugo Pipes can process JS files with Babel. | ||
date: 2019-03-21 | ||
publishdate: 2019-03-21 | ||
lastmod: 2019-03-21 | ||
categories: [asset management] | ||
keywords: [] | ||
menu: | ||
docs: | ||
parent: "pipes" | ||
weight: 49 | ||
weight: 49 | ||
sections_weight: 49 | ||
draft: false | ||
--- | ||
|
||
Any JavaScript resource file can be transpiled to another JavaScript version using `resources.Babel` which takes for argument the resource object and an optional dict of options listed below. Babel uses the [babel cli](https://babeljs.io/docs/en/babel-cli). | ||
|
||
|
||
{{% note %}} | ||
Hugo Pipe's Babel requires the `@babel/cli` and `@babel/core` JavaScript packages to be installed in the project or globally (`npm install -g @babel/cli @babel/core`) along with any Babel plugin(s) or preset(s) used (e.g., `npm install @babel/preset-env --save-dev`). | ||
|
||
If you are using the Hugo Snap package, Babel and plugin(s) need to be installed locally within your Hugo site directory, e.g., `npm install @babel/cli @babel/core --save-dev` without the `-g` flag. | ||
{{% /note %}} | ||
|
||
### Options | ||
|
||
config [string] | ||
: Path to the Babel configuration file. Hugo will, by default, look for a `babel.config.js` in your project. More information on these configuration files can be found here: [babel configuration](https://babeljs.io/docs/en/configuration). | ||
|
||
minified [bool] | ||
: Save as much bytes as possible when printing | ||
|
||
noComments [bool] | ||
: Write comments to generated output (true by default) | ||
|
||
compact [bool] | ||
: Do not include superfluous whitespace characters and line terminators. Defaults to `auto` if not set. | ||
|
||
verbose [bool] | ||
: Log everything | ||
|
||
### Examples | ||
|
||
```go-html-template | ||
{{- $transpiled := resources.Get "scripts/main.js" | babel -}} | ||
``` | ||
|
||
Or with options: | ||
|
||
```go-html-template | ||
{{ $opts := dict "noComments" true }} | ||
{{- $transpiled := resources.Get "scripts/main.js" | babel $opts -}} | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
// Copyright 2020 The Hugo Authors. All rights reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package hugolib | ||
|
||
import ( | ||
"os" | ||
"os/exec" | ||
"path/filepath" | ||
"runtime" | ||
"testing" | ||
|
||
"github.com/gohugoio/hugo/htesting" | ||
|
||
"github.com/spf13/viper" | ||
|
||
qt "github.com/frankban/quicktest" | ||
|
||
"github.com/gohugoio/hugo/hugofs" | ||
|
||
"github.com/gohugoio/hugo/common/loggers" | ||
) | ||
|
||
func TestResourceChainBabel(t *testing.T) { | ||
if !isCI() { | ||
t.Skip("skip (relative) long running modules test when running locally") | ||
} | ||
|
||
if runtime.GOOS == "windows" { | ||
t.Skip("skip npm test on Windows") | ||
} | ||
|
||
wd, _ := os.Getwd() | ||
defer func() { | ||
os.Chdir(wd) | ||
}() | ||
|
||
c := qt.New(t) | ||
|
||
packageJSON := `{ | ||
"scripts": {}, | ||
"devDependencies": { | ||
"@babel/cli": "7.8.4", | ||
"@babel/core": "7.9.0", | ||
"@babel/preset-env": "7.9.5" | ||
} | ||
} | ||
` | ||
|
||
babelConfig := ` | ||
console.error("Hugo Environment:", process.env.HUGO_ENVIRONMENT ); | ||
module.exports = { | ||
presets: ["@babel/preset-env"], | ||
}; | ||
` | ||
|
||
js := ` | ||
/* A Car */ | ||
class Car { | ||
constructor(brand) { | ||
this.carname = brand; | ||
} | ||
} | ||
` | ||
|
||
workDir, clean, err := htesting.CreateTempDir(hugofs.Os, "hugo-test-babel") | ||
c.Assert(err, qt.IsNil) | ||
defer clean() | ||
|
||
v := viper.New() | ||
v.Set("workingDir", workDir) | ||
v.Set("disableKinds", []string{"taxonomyTerm", "taxonomy", "page"}) | ||
b := newTestSitesBuilder(t).WithLogger(loggers.NewWarningLogger()) | ||
|
||
// Need to use OS fs for this. | ||
b.Fs = hugofs.NewDefault(v) | ||
b.WithWorkingDir(workDir) | ||
b.WithViper(v) | ||
b.WithContent("p1.md", "") | ||
|
||
b.WithTemplates("index.html", ` | ||
{{ $options := dict "noComments" true }} | ||
{{ $transpiled := resources.Get "js/main.js" | babel -}} | ||
Transpiled: {{ $transpiled.Content | safeJS }} | ||
`) | ||
|
||
jsDir := filepath.Join(workDir, "assets", "js") | ||
b.Assert(os.MkdirAll(jsDir, 0777), qt.IsNil) | ||
b.WithSourceFile("assets/js/main.js", js) | ||
b.WithSourceFile("package.json", packageJSON) | ||
b.WithSourceFile("babel.config.js", babelConfig) | ||
|
||
b.Assert(os.Chdir(workDir), qt.IsNil) | ||
_, err = exec.Command("npm", "install").CombinedOutput() | ||
b.Assert(err, qt.IsNil) | ||
|
||
out, err := captureStderr(func() error { | ||
return b.BuildE(BuildCfg{}) | ||
|
||
}) | ||
// Make sure Node sees this. | ||
b.Assert(out, qt.Contains, "Hugo Environment: production") | ||
b.Assert(err, qt.IsNil) | ||
|
||
b.AssertFileContent("public/index.html", ` | ||
var Car = function Car(brand) { | ||
_classCallCheck(this, Car); | ||
this.carname = brand; | ||
}; | ||
`) | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.