@form8ion/lerna 2.1.2 → 3.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -6
- package/example.js +1 -1
- package/lib/{index.es.js → index.js} +3 -3
- package/lib/index.js.map +1 -0
- package/package.json +46 -48
- package/lib/index.cjs.js +0 -47
- package/lib/index.cjs.js.map +0 -1
- package/lib/index.es.js.map +0 -1
package/README.md
CHANGED
|
@@ -6,6 +6,7 @@ opinionated scaffolder for monorepos managed with [Lerna](https://lerna.js.org/)
|
|
|
6
6
|
|
|
7
7
|
[![Node CI Workflow Status][github-actions-ci-badge]][github-actions-ci-link]
|
|
8
8
|
[![Codecov][coverage-badge]][coverage-link]
|
|
9
|
+
![SLSA Level 2][slsa-badge]
|
|
9
10
|
|
|
10
11
|
<!--status-badges end -->
|
|
11
12
|
|
|
@@ -92,28 +93,30 @@ $ npm test
|
|
|
92
93
|
|
|
93
94
|
[semantic-release-link]: https://github.com/semantic-release/semantic-release
|
|
94
95
|
|
|
95
|
-
[semantic-release-badge]: https://img.shields.io/badge
|
|
96
|
+
[semantic-release-badge]: https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release
|
|
96
97
|
|
|
97
98
|
[renovate-link]: https://renovatebot.com
|
|
98
99
|
|
|
99
|
-
[renovate-badge]: https://img.shields.io/badge/renovate-enabled-brightgreen.svg?logo=
|
|
100
|
+
[renovate-badge]: https://img.shields.io/badge/renovate-enabled-brightgreen.svg?logo=renovatebot
|
|
100
101
|
|
|
101
102
|
[github-actions-ci-link]: https://github.com/form8ion/lerna/actions?query=workflow%3A%22Node.js+CI%22+branch%3Amaster
|
|
102
103
|
|
|
103
|
-
[github-actions-ci-badge]: https://
|
|
104
|
+
[github-actions-ci-badge]: https://img.shields.io/github/actions/workflow/status/form8ion/lerna/node-ci.yml.svg?branch=master&logo=github
|
|
104
105
|
|
|
105
106
|
[coverage-link]: https://codecov.io/github/form8ion/lerna
|
|
106
107
|
|
|
107
|
-
[coverage-badge]: https://img.shields.io/codecov/c/github/form8ion/lerna
|
|
108
|
+
[coverage-badge]: https://img.shields.io/codecov/c/github/form8ion/lerna?logo=codecov
|
|
108
109
|
|
|
109
110
|
[license-link]: LICENSE
|
|
110
111
|
|
|
111
|
-
[license-badge]: https://img.shields.io/github/license/form8ion/lerna.svg
|
|
112
|
+
[license-badge]: https://img.shields.io/github/license/form8ion/lerna.svg?logo=opensourceinitiative
|
|
112
113
|
|
|
113
114
|
[npm-link]: https://www.npmjs.com/package/@form8ion/lerna
|
|
114
115
|
|
|
115
|
-
[npm-badge]: https://img.shields.io/npm/v/@form8ion/lerna
|
|
116
|
+
[npm-badge]: https://img.shields.io/npm/v/@form8ion/lerna?logo=npm
|
|
116
117
|
|
|
117
118
|
[runkit-link]: https://npm.runkit.com/@form8ion/lerna
|
|
118
119
|
|
|
119
120
|
[runkit-badge]: https://badge.runkitcdn.com/@form8ion/lerna.svg
|
|
121
|
+
|
|
122
|
+
[slsa-badge]: https://slsa.dev/images/gh-badge-level2.svg
|
package/example.js
CHANGED
|
@@ -10,7 +10,7 @@ async function scaffoldLerna ({projectRoot, packageManager}) {
|
|
|
10
10
|
});
|
|
11
11
|
|
|
12
12
|
return {
|
|
13
|
-
|
|
13
|
+
dependencies: {javascript: {development: ['lerna']}},
|
|
14
14
|
scripts: {
|
|
15
15
|
bootstrap: 'lerna bootstrap',
|
|
16
16
|
'test:packages': 'lerna run --parallel test',
|
|
@@ -30,7 +30,7 @@ async function scaffoldLerna ({projectRoot, packageManager}) {
|
|
|
30
30
|
|
|
31
31
|
function scaffoldRelease () {
|
|
32
32
|
return {
|
|
33
|
-
|
|
33
|
+
dependencies: {javascript: {development: ['semantic-release', 'semantic-release-monorepo']}},
|
|
34
34
|
scripts: {
|
|
35
35
|
release: 'lerna exec --concurrency 1 -- npx semantic-release --extends semantic-release-monorepo'
|
|
36
36
|
}
|
|
@@ -42,4 +42,4 @@ async function scaffold ({projectRoot, packageManager}) {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
export { scaffold };
|
|
45
|
-
//# sourceMappingURL=index.
|
|
45
|
+
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/lerna.js","../src/release.js","../src/scaffold.js"],"sourcesContent":["import {fileTypes, writeConfigFile} from '@form8ion/core';\n\nexport default async function ({projectRoot, packageManager}) {\n await writeConfigFile({\n format: fileTypes.JSON,\n name: 'lerna',\n path: projectRoot,\n config: {version: 'independent', packages: ['packages/*'], npmClient: packageManager}\n });\n\n return {\n dependencies: {javascript: {development: ['lerna']}},\n scripts: {\n bootstrap: 'lerna bootstrap',\n 'test:packages': 'lerna run --parallel test',\n 'test:packages:since': 'lerna run --parallel test --since HEAD'\n },\n badges: {\n contribution: {\n lerna: {\n text: 'lerna',\n link: 'https://lerna.js.org/',\n img: 'https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg'\n }\n }\n }\n };\n}\n","export default function () {\n return {\n dependencies: {javascript: {development: ['semantic-release', 'semantic-release-monorepo']}},\n scripts: {\n release: 'lerna exec --concurrency 1 -- npx semantic-release --extends semantic-release-monorepo'\n }\n };\n}\n","import deepmerge from 'deepmerge';\n\nimport scaffoldLerna from './lerna.js';\nimport scaffoldRelease from './release.js';\n\nexport default async function ({projectRoot, packageManager}) {\n return deepmerge.all(await Promise.all([scaffoldLerna({projectRoot, packageManager}), scaffoldRelease()]));\n}\n"],"names":[],"mappings":";;;AAEe,4BAAc,EAAE,CAAC,WAAW,EAAE,cAAc,CAAC,EAAE;AAC9D,EAAE,MAAM,eAAe,CAAC;AACxB,IAAI,MAAM,EAAE,SAAS,CAAC,IAAI;AAC1B,IAAI,IAAI,EAAE,OAAO;AACjB,IAAI,IAAI,EAAE,WAAW;AACrB,IAAI,MAAM,EAAE,CAAC,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,CAAC,YAAY,CAAC,EAAE,SAAS,EAAE,cAAc,CAAC;AACzF,GAAG,CAAC,CAAC;AACL;AACA,EAAE,OAAO;AACT,IAAI,YAAY,EAAE,CAAC,UAAU,EAAE,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;AACxD,IAAI,OAAO,EAAE;AACb,MAAM,SAAS,EAAE,iBAAiB;AAClC,MAAM,eAAe,EAAE,2BAA2B;AAClD,MAAM,qBAAqB,EAAE,wCAAwC;AACrE,KAAK;AACL,IAAI,MAAM,EAAE;AACZ,MAAM,YAAY,EAAE;AACpB,QAAQ,KAAK,EAAE;AACf,UAAU,IAAI,EAAE,OAAO;AACvB,UAAU,IAAI,EAAE,uBAAuB;AACvC,UAAU,GAAG,EAAE,iEAAiE;AAChF,SAAS;AACT,OAAO;AACP,KAAK;AACL,GAAG,CAAC;AACJ;;AC3Be,wBAAQ,IAAI;AAC3B,EAAE,OAAO;AACT,IAAI,YAAY,EAAE,CAAC,UAAU,EAAE,CAAC,WAAW,EAAE,CAAC,kBAAkB,EAAE,2BAA2B,CAAC,CAAC,CAAC;AAChG,IAAI,OAAO,EAAE;AACb,MAAM,OAAO,EAAE,wFAAwF;AACvG,KAAK;AACL,GAAG,CAAC;AACJ;;ACFe,uBAAc,EAAE,CAAC,WAAW,EAAE,cAAc,CAAC,EAAE;AAC9D,EAAE,OAAO,SAAS,CAAC,GAAG,CAAC,MAAM,OAAO,CAAC,GAAG,CAAC,CAAC,aAAa,CAAC,CAAC,WAAW,EAAE,cAAc,CAAC,CAAC,EAAE,eAAe,EAAE,CAAC,CAAC,CAAC,CAAC;AAC7G;;;;"}
|
package/package.json
CHANGED
|
@@ -2,27 +2,21 @@
|
|
|
2
2
|
"name": "@form8ion/lerna",
|
|
3
3
|
"description": "opinionated scaffolder for monorepos managed with lerna",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
"lib/"
|
|
9
|
-
],
|
|
10
|
-
"publishConfig": {
|
|
11
|
-
"access": "public"
|
|
12
|
-
},
|
|
13
|
-
"runkitExampleFilename": "./example.js",
|
|
14
|
-
"main": "lib/index.cjs.js",
|
|
15
|
-
"module": "lib/index.es.js",
|
|
16
|
-
"sideEffects": false,
|
|
5
|
+
"version": "3.0.0-beta.2",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"author": "Matt Travi <npm@travi.org> (https://matt.travi.org)",
|
|
17
8
|
"repository": "form8ion/lerna",
|
|
18
9
|
"bugs": "https://github.com/form8ion/lerna/issues",
|
|
19
10
|
"homepage": "https://npm.im/@form8ion/lerna",
|
|
20
|
-
"
|
|
11
|
+
"runkitExampleFilename": "./example.js",
|
|
12
|
+
"main": "./lib/index.js",
|
|
13
|
+
"exports": "./lib/index.js",
|
|
14
|
+
"sideEffects": false,
|
|
21
15
|
"scripts": {
|
|
22
16
|
"test": "npm-run-all --print-label build --parallel lint:* --parallel test:*",
|
|
23
17
|
"lint:lockfile": "lockfile-lint",
|
|
24
18
|
"lint:js": "eslint . --cache",
|
|
25
|
-
"lint:js:fix": "run-s lint:js -- --fix",
|
|
19
|
+
"lint:js:fix": "run-s 'lint:js -- --fix'",
|
|
26
20
|
"lint:md": "remark . --frail",
|
|
27
21
|
"generate:md": "remark . --output",
|
|
28
22
|
"pregenerate:md": "run-s build",
|
|
@@ -30,7 +24,7 @@
|
|
|
30
24
|
"pretest:integration": "preview",
|
|
31
25
|
"lint:gherkin": "gherkin-lint",
|
|
32
26
|
"test:integration": "run-s 'test:integration:base -- --profile noWip'",
|
|
33
|
-
"test:integration:base": "NODE_OPTIONS=--enable-source-maps DEBUG=any cucumber-js test/integration
|
|
27
|
+
"test:integration:base": "NODE_OPTIONS=--enable-source-maps DEBUG=any cucumber-js test/integration",
|
|
34
28
|
"test:integration:debug": "DEBUG=test run-s test:integration",
|
|
35
29
|
"test:integration:wip": "run-s 'test:integration:base -- --profile wip'",
|
|
36
30
|
"test:integration:wip:debug": "DEBUG=test run-s 'test:integration:wip'",
|
|
@@ -41,50 +35,54 @@
|
|
|
41
35
|
"build:js": "rollup --config",
|
|
42
36
|
"watch": "run-s 'build:js -- --watch'",
|
|
43
37
|
"prepack": "run-s build",
|
|
44
|
-
"test:unit": "cross-env NODE_ENV=test
|
|
45
|
-
"
|
|
46
|
-
"test:unit:base": "DEBUG=any mocha 'src/**/*-test.js'",
|
|
38
|
+
"test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
|
|
39
|
+
"test:unit:base": "DEBUG=any vitest run",
|
|
47
40
|
"lint:peer": "npm ls >/dev/null",
|
|
48
|
-
"prepare": "husky install"
|
|
41
|
+
"prepare": "husky install",
|
|
42
|
+
"lint:publish": "publint --strict"
|
|
43
|
+
},
|
|
44
|
+
"files": [
|
|
45
|
+
"example.js",
|
|
46
|
+
"lib/"
|
|
47
|
+
],
|
|
48
|
+
"publishConfig": {
|
|
49
|
+
"access": "public",
|
|
50
|
+
"provenance": true
|
|
51
|
+
},
|
|
52
|
+
"packageManager": "npm@11.0.0+sha256.f69aa67502f6fc1fe330e4b454110d625205e95df557aef9779e1e813e0e1289",
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@form8ion/core": "^3.0.0",
|
|
55
|
+
"deepmerge": "^4.2.2"
|
|
49
56
|
},
|
|
50
57
|
"devDependencies": {
|
|
51
|
-
"@
|
|
52
|
-
"@
|
|
53
|
-
"@form8ion/
|
|
54
|
-
"@form8ion/commitlint-config": "1.0.52",
|
|
55
|
-
"@form8ion/eslint-config": "5.0.35",
|
|
58
|
+
"@cucumber/cucumber": "10.0.1",
|
|
59
|
+
"@form8ion/commitlint-config": "1.0.65",
|
|
60
|
+
"@form8ion/eslint-config": "7.0.7",
|
|
56
61
|
"@form8ion/eslint-config-cucumber": "1.4.1",
|
|
57
|
-
"@form8ion/
|
|
58
|
-
"@form8ion/javascript": "
|
|
59
|
-
"@form8ion/
|
|
60
|
-
"@
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"ban-sensitive-files": "1.9.19",
|
|
65
|
-
"chai": "4.3.7",
|
|
66
|
-
"codecov": "3.8.3",
|
|
62
|
+
"@form8ion/javascript": "11.10.1",
|
|
63
|
+
"@form8ion/javascript-core": "10.1.0",
|
|
64
|
+
"@form8ion/remark-lint-preset": "6.0.2",
|
|
65
|
+
"@travi/any": "3.0.2",
|
|
66
|
+
"ban-sensitive-files": "1.10.1",
|
|
67
|
+
"c8": "8.0.1",
|
|
68
|
+
"chai": "4.3.10",
|
|
67
69
|
"cross-env": "7.0.3",
|
|
68
70
|
"cz-conventional-changelog": "3.3.0",
|
|
69
71
|
"gherkin-lint": "4.2.2",
|
|
70
72
|
"husky": "8.0.3",
|
|
71
|
-
"lockfile-lint": "4.
|
|
72
|
-
"mocha": "10.2.0",
|
|
73
|
+
"lockfile-lint": "4.12.1",
|
|
73
74
|
"mock-fs": "5.2.0",
|
|
74
|
-
"npm-run-
|
|
75
|
-
"nyc": "15.1.0",
|
|
75
|
+
"npm-run-all2": "6.1.1",
|
|
76
76
|
"package-preview": "4.0.0",
|
|
77
|
-
"
|
|
78
|
-
"remark-
|
|
79
|
-
"remark-
|
|
80
|
-
"
|
|
81
|
-
"
|
|
77
|
+
"publint": "0.2.6",
|
|
78
|
+
"remark-cli": "12.0.0",
|
|
79
|
+
"remark-toc": "9.0.0",
|
|
80
|
+
"remark-usage": "11.0.1",
|
|
81
|
+
"rimraf": "5.0.5",
|
|
82
|
+
"rollup": "4.9.0",
|
|
82
83
|
"rollup-plugin-auto-external": "2.0.0",
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
"dependencies": {
|
|
86
|
-
"@form8ion/core": "^3.0.0",
|
|
87
|
-
"deepmerge": "^4.2.2"
|
|
84
|
+
"vitest": "3.0.4",
|
|
85
|
+
"vitest-when": "0.6.0"
|
|
88
86
|
},
|
|
89
87
|
"peerDependencies": {
|
|
90
88
|
"@form8ion/javascript": ">=2.0.0"
|
package/lib/index.cjs.js
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var deepmerge = require('deepmerge');
|
|
4
|
-
var core = require('@form8ion/core');
|
|
5
|
-
|
|
6
|
-
async function scaffoldLerna ({projectRoot, packageManager}) {
|
|
7
|
-
await core.writeConfigFile({
|
|
8
|
-
format: core.fileTypes.JSON,
|
|
9
|
-
name: 'lerna',
|
|
10
|
-
path: projectRoot,
|
|
11
|
-
config: {version: 'independent', packages: ['packages/*'], npmClient: packageManager}
|
|
12
|
-
});
|
|
13
|
-
|
|
14
|
-
return {
|
|
15
|
-
devDependencies: ['lerna'],
|
|
16
|
-
scripts: {
|
|
17
|
-
bootstrap: 'lerna bootstrap',
|
|
18
|
-
'test:packages': 'lerna run --parallel test',
|
|
19
|
-
'test:packages:since': 'lerna run --parallel test --since HEAD'
|
|
20
|
-
},
|
|
21
|
-
badges: {
|
|
22
|
-
contribution: {
|
|
23
|
-
lerna: {
|
|
24
|
-
text: 'lerna',
|
|
25
|
-
link: 'https://lerna.js.org/',
|
|
26
|
-
img: 'https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg'
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
};
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
function scaffoldRelease () {
|
|
34
|
-
return {
|
|
35
|
-
devDependencies: ['semantic-release', 'semantic-release-monorepo'],
|
|
36
|
-
scripts: {
|
|
37
|
-
release: 'lerna exec --concurrency 1 -- npx semantic-release --extends semantic-release-monorepo'
|
|
38
|
-
}
|
|
39
|
-
};
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
async function scaffold ({projectRoot, packageManager}) {
|
|
43
|
-
return deepmerge.all(await Promise.all([scaffoldLerna({projectRoot, packageManager}), scaffoldRelease()]));
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
exports.scaffold = scaffold;
|
|
47
|
-
//# sourceMappingURL=index.cjs.js.map
|
package/lib/index.cjs.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs.js","sources":["../src/lerna.js","../src/release.js","../src/scaffold.js"],"sourcesContent":["import {fileTypes, writeConfigFile} from '@form8ion/core';\n\nexport default async function ({projectRoot, packageManager}) {\n await writeConfigFile({\n format: fileTypes.JSON,\n name: 'lerna',\n path: projectRoot,\n config: {version: 'independent', packages: ['packages/*'], npmClient: packageManager}\n });\n\n return {\n devDependencies: ['lerna'],\n scripts: {\n bootstrap: 'lerna bootstrap',\n 'test:packages': 'lerna run --parallel test',\n 'test:packages:since': 'lerna run --parallel test --since HEAD'\n },\n badges: {\n contribution: {\n lerna: {\n text: 'lerna',\n link: 'https://lerna.js.org/',\n img: 'https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg'\n }\n }\n }\n };\n}\n","export default function () {\n return {\n devDependencies: ['semantic-release', 'semantic-release-monorepo'],\n scripts: {\n release: 'lerna exec --concurrency 1 -- npx semantic-release --extends semantic-release-monorepo'\n }\n };\n}\n","import deepmerge from 'deepmerge';\nimport scaffoldLerna from './lerna';\nimport scaffoldRelease from './release';\n\nexport default async function ({projectRoot, packageManager}) {\n return deepmerge.all(await Promise.all([scaffoldLerna({projectRoot, packageManager}), scaffoldRelease()]));\n}\n"],"names":["writeConfigFile","fileTypes"],"mappings":";;;;;AAEe,4BAAc,EAAE,CAAC,WAAW,EAAE,cAAc,CAAC,EAAE;AAC9D,EAAE,MAAMA,oBAAe,CAAC;AACxB,IAAI,MAAM,EAAEC,cAAS,CAAC,IAAI;AAC1B,IAAI,IAAI,EAAE,OAAO;AACjB,IAAI,IAAI,EAAE,WAAW;AACrB,IAAI,MAAM,EAAE,CAAC,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,CAAC,YAAY,CAAC,EAAE,SAAS,EAAE,cAAc,CAAC;AACzF,GAAG,CAAC,CAAC;AACL;AACA,EAAE,OAAO;AACT,IAAI,eAAe,EAAE,CAAC,OAAO,CAAC;AAC9B,IAAI,OAAO,EAAE;AACb,MAAM,SAAS,EAAE,iBAAiB;AAClC,MAAM,eAAe,EAAE,2BAA2B;AAClD,MAAM,qBAAqB,EAAE,wCAAwC;AACrE,KAAK;AACL,IAAI,MAAM,EAAE;AACZ,MAAM,YAAY,EAAE;AACpB,QAAQ,KAAK,EAAE;AACf,UAAU,IAAI,EAAE,OAAO;AACvB,UAAU,IAAI,EAAE,uBAAuB;AACvC,UAAU,GAAG,EAAE,iEAAiE;AAChF,SAAS;AACT,OAAO;AACP,KAAK;AACL,GAAG,CAAC;AACJ;;AC3Be,wBAAQ,IAAI;AAC3B,EAAE,OAAO;AACT,IAAI,eAAe,EAAE,CAAC,kBAAkB,EAAE,2BAA2B,CAAC;AACtE,IAAI,OAAO,EAAE;AACb,MAAM,OAAO,EAAE,wFAAwF;AACvG,KAAK;AACL,GAAG,CAAC;AACJ;;ACHe,uBAAc,EAAE,CAAC,WAAW,EAAE,cAAc,CAAC,EAAE;AAC9D,EAAE,OAAO,SAAS,CAAC,GAAG,CAAC,MAAM,OAAO,CAAC,GAAG,CAAC,CAAC,aAAa,CAAC,CAAC,WAAW,EAAE,cAAc,CAAC,CAAC,EAAE,eAAe,EAAE,CAAC,CAAC,CAAC,CAAC;AAC7G;;;;"}
|
package/lib/index.es.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.es.js","sources":["../src/lerna.js","../src/release.js","../src/scaffold.js"],"sourcesContent":["import {fileTypes, writeConfigFile} from '@form8ion/core';\n\nexport default async function ({projectRoot, packageManager}) {\n await writeConfigFile({\n format: fileTypes.JSON,\n name: 'lerna',\n path: projectRoot,\n config: {version: 'independent', packages: ['packages/*'], npmClient: packageManager}\n });\n\n return {\n devDependencies: ['lerna'],\n scripts: {\n bootstrap: 'lerna bootstrap',\n 'test:packages': 'lerna run --parallel test',\n 'test:packages:since': 'lerna run --parallel test --since HEAD'\n },\n badges: {\n contribution: {\n lerna: {\n text: 'lerna',\n link: 'https://lerna.js.org/',\n img: 'https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg'\n }\n }\n }\n };\n}\n","export default function () {\n return {\n devDependencies: ['semantic-release', 'semantic-release-monorepo'],\n scripts: {\n release: 'lerna exec --concurrency 1 -- npx semantic-release --extends semantic-release-monorepo'\n }\n };\n}\n","import deepmerge from 'deepmerge';\nimport scaffoldLerna from './lerna';\nimport scaffoldRelease from './release';\n\nexport default async function ({projectRoot, packageManager}) {\n return deepmerge.all(await Promise.all([scaffoldLerna({projectRoot, packageManager}), scaffoldRelease()]));\n}\n"],"names":[],"mappings":";;;AAEe,4BAAc,EAAE,CAAC,WAAW,EAAE,cAAc,CAAC,EAAE;AAC9D,EAAE,MAAM,eAAe,CAAC;AACxB,IAAI,MAAM,EAAE,SAAS,CAAC,IAAI;AAC1B,IAAI,IAAI,EAAE,OAAO;AACjB,IAAI,IAAI,EAAE,WAAW;AACrB,IAAI,MAAM,EAAE,CAAC,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,CAAC,YAAY,CAAC,EAAE,SAAS,EAAE,cAAc,CAAC;AACzF,GAAG,CAAC,CAAC;AACL;AACA,EAAE,OAAO;AACT,IAAI,eAAe,EAAE,CAAC,OAAO,CAAC;AAC9B,IAAI,OAAO,EAAE;AACb,MAAM,SAAS,EAAE,iBAAiB;AAClC,MAAM,eAAe,EAAE,2BAA2B;AAClD,MAAM,qBAAqB,EAAE,wCAAwC;AACrE,KAAK;AACL,IAAI,MAAM,EAAE;AACZ,MAAM,YAAY,EAAE;AACpB,QAAQ,KAAK,EAAE;AACf,UAAU,IAAI,EAAE,OAAO;AACvB,UAAU,IAAI,EAAE,uBAAuB;AACvC,UAAU,GAAG,EAAE,iEAAiE;AAChF,SAAS;AACT,OAAO;AACP,KAAK;AACL,GAAG,CAAC;AACJ;;AC3Be,wBAAQ,IAAI;AAC3B,EAAE,OAAO;AACT,IAAI,eAAe,EAAE,CAAC,kBAAkB,EAAE,2BAA2B,CAAC;AACtE,IAAI,OAAO,EAAE;AACb,MAAM,OAAO,EAAE,wFAAwF;AACvG,KAAK;AACL,GAAG,CAAC;AACJ;;ACHe,uBAAc,EAAE,CAAC,WAAW,EAAE,cAAc,CAAC,EAAE;AAC9D,EAAE,OAAO,SAAS,CAAC,GAAG,CAAC,MAAM,OAAO,CAAC,GAAG,CAAC,CAAC,aAAa,CAAC,CAAC,WAAW,EAAE,cAAc,CAAC,CAAC,EAAE,eAAe,EAAE,CAAC,CAAC,CAAC,CAAC;AAC7G;;;;"}
|