mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
d88a29e002
Rewrite `hugo mod npm pack` to use npm workspaces. Module deps are now
written to packages/hugoautogen/package.json and the root package.json
gets a "workspaces" reference. A hugo_packagemeta.json sidecar stores a
hash of all input package files so regular commands can warn when npm
deps are out of sync.
Other changes:
- Workspace glob patterns (*, **, {a,b}) are resolved via gobwas/glob.
- Workspaces defined in package.hugo.json are supported.
- package.hugo.json is only recognised at module roots, not in workspaces.
- When package.hugo.json exists, package.json is not mounted or vendored.
- packages/hugoautogen is not mounted or vendored from dependencies.
- Add usePackageJSON import option (auto/always/never) to control whether
a module's npm deps are included. "auto" checks for Hugo config files
or package.hugo.json.
- The staleness check is skipped when running `hugo mod npm pack` itself.
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
89 lines
2.1 KiB
Go
89 lines
2.1 KiB
Go
// Copyright 2026 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 gxoverning permissions and
|
|
// limitations under the License.
|
|
|
|
package npm_test
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
qt "github.com/frankban/quicktest"
|
|
"github.com/gohugoio/hugo/hugolib"
|
|
"github.com/gohugoio/hugo/modules"
|
|
"github.com/gohugoio/hugo/modules/npm"
|
|
)
|
|
|
|
func getPackageBuilderTestFiles() string {
|
|
files := `
|
|
-- hugo.toml --
|
|
-- package.json --
|
|
{
|
|
"workspaces": [
|
|
"packages/*"
|
|
]
|
|
}
|
|
-- packages/hugoautogen/package.json --
|
|
-- packages/a/package.json --
|
|
PACKAGE_CONTENT
|
|
-- packages/b/package.json --
|
|
PACKAGE_CONTENT
|
|
-- packages/c/package.json --
|
|
PACKAGE_CONTENT
|
|
-- packages/d/package.json --
|
|
PACKAGE_CONTENT
|
|
-- packages/e/package.json --
|
|
PACKAGE_CONTENT
|
|
`
|
|
packageContent := `{
|
|
"name": "foo",
|
|
"version": "0.1.1",
|
|
"dependencies": {
|
|
"react-dom": "1.1.1",
|
|
"tailwindcss": "1.2.0",
|
|
"@babel/cli": "7.8.4",
|
|
"@babel/core": "7.9.0",
|
|
"@babel/preset-env": "7.9.5"
|
|
},
|
|
"devDependencies": {
|
|
"postcss-cli": "7.1.0",
|
|
"tailwindcss": "1.2.0",
|
|
"@babel/cli": "7.8.4",
|
|
"@babel/core": "7.9.0",
|
|
"@babel/preset-env": "7.9.5"
|
|
}
|
|
}`
|
|
files = strings.ReplaceAll(files, "PACKAGE_CONTENT", packageContent)
|
|
return files
|
|
}
|
|
|
|
func TestPackageBuilder(t *testing.T) {
|
|
files := getPackageBuilderTestFiles()
|
|
b := hugolib.Test(t, files)
|
|
fs := b.H.Fs.WorkingDirReadOnly
|
|
|
|
sum := npm.PackageFilesSum(fs, b.H.AllModules())
|
|
b.Assert(sum, qt.Equals, "ce880d142ad9a16a")
|
|
}
|
|
|
|
func BenchmarkPackageFilesSum(b *testing.B) {
|
|
files := getPackageBuilderTestFiles()
|
|
bb := hugolib.Test(b, files)
|
|
fs := bb.H.Fs.WorkingDirReadOnly
|
|
b.ResetTimer()
|
|
|
|
for b.Loop() {
|
|
sum := npm.PackageFilesSum(fs, modules.Modules{})
|
|
bb.Assert(sum, qt.Equals, "ce880d142ad9a16a")
|
|
}
|
|
}
|