aboutsummaryrefslogtreecommitdiffhomepage
path: root/testscripts/commands/mod_npm_withexisting.txt
blob: e92eba3fd9d53c45c669a9ddf95e355f3c07abc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Test mod npm.

dostounix golden/package.json

hugo mod npm pack
cmp package.json golden/package.json

-- hugo.toml --
baseURL = "https://example.org/"
[module]
[[module.imports]]
path="github.com/gohugoio/hugoTestModule2"
-- package.json --
{
  "comments": {
    "foo": {
      "a": "b"
    }
  },
  "devDependencies": {
    "tailwindcss": "2.2.0"
  },
  "name": "mypackage",
  "version": "1.1.0"
}
-- golden/package.json --
{
  "comments": {
    "dependencies": {
      "react-dom": "github.com/gohugoio/hugoTestModule2"
    },
    "devDependencies": {
      "@babel/cli": "github.com/gohugoio/hugoTestModule2",
      "@babel/core": "github.com/gohugoio/hugoTestModule2",
      "@babel/preset-env": "github.com/gohugoio/hugoTestModule2",
      "postcss-cli": "github.com/gohugoio/hugoTestModule2",
      "tailwindcss": "project"
    },
    "foo": {
      "a": "b"
    }
  },
  "dependencies": {
    "react-dom": "^16.13.1"
  },
  "devDependencies": {
    "@babel/cli": "7.8.4",
    "@babel/core": "7.9.0",
    "@babel/preset-env": "7.9.5",
    "postcss-cli": "7.1.0",
    "tailwindcss": "2.2.0"
  },
  "name": "mypackage",
  "version": "1.1.0"
}
-- go.mod --
module github.com/gohugoio/hugoTestModule