pnpm-plugin-storm-software 0.1.92 → 0.1.94
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 +1 -1
- package/package.json +6 -5
- package/pnpmfile.cjs +28 -11
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
package/package.json
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pnpm-plugin-storm-software",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.1.94",
|
|
4
|
+
"private": false,
|
|
5
5
|
"description": "A [pnpm](https://pnpm.io/) plugin to enhance pnpm functionality for Storm Software projects.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "github",
|
|
8
8
|
"url": "https://github.com/storm-software/storm-ops",
|
|
9
9
|
"directory": "packages/pnpm-plugin"
|
|
10
10
|
},
|
|
11
|
-
"
|
|
12
|
-
"main": "./pnpmfile.cjs",
|
|
11
|
+
"type": "module",
|
|
13
12
|
"exports": {
|
|
14
13
|
"./package.json": "./package.json",
|
|
15
14
|
".": "./pnpmfile.cjs",
|
|
@@ -17,13 +16,15 @@
|
|
|
17
16
|
"./esm_loader.mjs": "./esm_loader.mjs",
|
|
18
17
|
"./allow.json": "./allow.json"
|
|
19
18
|
},
|
|
19
|
+
"main": "./pnpmfile.cjs",
|
|
20
20
|
"files": ["./pnpmfile.cjs", "./esm_loader.mjs", "./allow.json"],
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@pnpm/types": "^1001.3.0",
|
|
23
|
+
"@storm-software/build-tools": "^0.158.143",
|
|
23
24
|
"@types/node": "^25.5.0",
|
|
24
25
|
"defu": "6.1.4",
|
|
25
26
|
"tsup": "8.4.0"
|
|
26
27
|
},
|
|
27
28
|
"publishConfig": { "access": "public" },
|
|
28
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "c9e22f77a54addf393da062dd661a01624fea3b1"
|
|
29
30
|
}
|
package/pnpmfile.cjs
CHANGED
|
@@ -1,11 +1,35 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
require('@swc/core');
|
|
4
|
+
require('fs');
|
|
5
|
+
require('module');
|
|
6
|
+
var path2 = require('path');
|
|
7
|
+
require('resolve');
|
|
8
|
+
require('@nx/devkit');
|
|
9
|
+
require('@nx/js/src/utils/assets/copy-assets-handler');
|
|
10
|
+
require('glob');
|
|
11
|
+
require('fs/promises');
|
|
12
|
+
require('@nx/js/src/utils/buildable-libs-utils');
|
|
13
|
+
require('nx/src/project-graph/project-graph');
|
|
14
|
+
require('nx/src/tasks-runner/create-task-graph');
|
|
4
15
|
var url = require('url');
|
|
5
16
|
|
|
6
17
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
7
18
|
|
|
8
|
-
var
|
|
19
|
+
var path2__default = /*#__PURE__*/_interopDefault(path2);
|
|
20
|
+
|
|
21
|
+
// ../build-tools/src/constants/internal-packages.ts
|
|
22
|
+
var INTERNAL_PACKAGES = [
|
|
23
|
+
"@storm-software/*",
|
|
24
|
+
"conventional-changelog-storm-software",
|
|
25
|
+
"pnpm-plugin-storm-software",
|
|
26
|
+
"@stryke/*",
|
|
27
|
+
"@powerlines/*",
|
|
28
|
+
"powerlines",
|
|
29
|
+
"@shell-shock/*",
|
|
30
|
+
"@earthquake/*",
|
|
31
|
+
"earthquake"
|
|
32
|
+
];
|
|
9
33
|
|
|
10
34
|
// ../../node_modules/.pnpm/defu@6.1.4/node_modules/defu/dist/defu.mjs
|
|
11
35
|
function isPlainObject(value) {
|
|
@@ -77,20 +101,13 @@ var pnpmfile_default = {
|
|
|
77
101
|
cleanupUnusedCatalogs: true,
|
|
78
102
|
linkWorkspacePackages: true,
|
|
79
103
|
minimumReleaseAge: 800,
|
|
80
|
-
minimumReleaseAgeExclude:
|
|
81
|
-
"@storm-software/*",
|
|
82
|
-
"@stryke/*",
|
|
83
|
-
"@powerlines/*",
|
|
84
|
-
"powerlines",
|
|
85
|
-
"@earthquake/*",
|
|
86
|
-
"earthquake"
|
|
87
|
-
]
|
|
104
|
+
minimumReleaseAgeExclude: INTERNAL_PACKAGES
|
|
88
105
|
});
|
|
89
106
|
if (result.hoistPattern?.length === 1 && result.hoistPattern[0] === "*") {
|
|
90
107
|
result.hoistPattern = [];
|
|
91
108
|
}
|
|
92
109
|
config.extraEnv.NODE_OPTIONS = `${process.env.NODE_OPTIONS ? `${process.env.NODE_OPTIONS} ` : ""}--import=data:text/javascript,${encodeURIComponent(
|
|
93
|
-
`import{register}from'node:module';register('${url.pathToFileURL(
|
|
110
|
+
`import{register}from'node:module';register('${url.pathToFileURL(path2__default.default.resolve(__dirname, "esm_loader.mjs")).href}','${url.pathToFileURL(path2__default.default.resolve("./")).href}');`
|
|
94
111
|
)}`;
|
|
95
112
|
return config;
|
|
96
113
|
},
|