@storm-software/workspace-tools 1.175.2 → 1.175.3
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/CHANGELOG.md +10 -0
- package/index.js +0 -49
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/rollup/executor.js +0 -49
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 1.175.3 (2024-09-08)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **workspace-tools:** Resolve issue with bundling Nx packages
|
|
6
|
+
([8fc7681e](https://github.com/storm-software/storm-ops/commit/8fc7681e))
|
|
7
|
+
|
|
8
|
+
- **workspace-tools:** Resolved usused dependency issue
|
|
9
|
+
([e6b72551](https://github.com/storm-software/storm-ops/commit/e6b72551))
|
|
10
|
+
|
|
1
11
|
## 1.175.2 (2024-09-07)
|
|
2
12
|
|
|
3
13
|
### Bug Fixes
|
package/index.js
CHANGED
|
@@ -317176,55 +317176,6 @@ async function* rollupExecutorFn(options, context, config) {
|
|
|
317176
317176
|
main: options.entry
|
|
317177
317177
|
};
|
|
317178
317178
|
executorOptions.rollupConfig = options.rollupConfig ?? {};
|
|
317179
|
-
+// dependencies
|
|
317180
|
-
// ),
|
|
317181
|
-
// },
|
|
317182
|
-
// }),
|
|
317183
|
-
// typeDefinitions({
|
|
317184
|
-
// projectRoot,
|
|
317185
|
-
// }),
|
|
317186
|
-
// postcss({
|
|
317187
|
-
// inject: true,
|
|
317188
|
-
// extract: options.extractCss,
|
|
317189
|
-
// autoModules: true,
|
|
317190
|
-
// plugins: [autoprefixer],
|
|
317191
|
-
// use: {
|
|
317192
|
-
// less: {
|
|
317193
|
-
// javascriptEnabled: options.javascriptEnabled,
|
|
317194
|
-
// },
|
|
317195
|
-
// },
|
|
317196
|
-
// }),
|
|
317197
|
-
// nodeResolve({
|
|
317198
|
-
// preferBuiltins: true,
|
|
317199
|
-
// extensions: fileExtensions,
|
|
317200
|
-
// }),
|
|
317201
|
-
// useSwc && swc(),
|
|
317202
|
-
// useBabel &&
|
|
317203
|
-
// getBabelInputPlugin({
|
|
317204
|
-
// // Lets `@nx/js/babel` preset know that we are packaging.
|
|
317205
|
-
// caller: {
|
|
317206
|
-
// // @ts-ignore
|
|
317207
|
-
// // Ignoring type checks for caller since we have custom attributes
|
|
317208
|
-
// isNxPackage: true,
|
|
317209
|
-
// // Always target esnext and let rollup handle cjs
|
|
317210
|
-
// supportsStaticESM: true,
|
|
317211
|
-
// isModern: true,
|
|
317212
|
-
// },
|
|
317213
|
-
// cwd: join(
|
|
317214
|
-
// workspaceRoot,
|
|
317215
|
-
// projectNode.data.sourceRoot ?? projectNode.data.root
|
|
317216
|
-
// ),
|
|
317217
|
-
// rootMode: options.babelUpwardRootMode ? 'upward' : undefined,
|
|
317218
|
-
// babelrc: true,
|
|
317219
|
-
// extensions: fileExtensions,
|
|
317220
|
-
// babelHelpers: 'bundled',
|
|
317221
|
-
// skipPreflightCheck: true, // pre-flight check may yield false positives and also slows down the build
|
|
317222
|
-
// exclude: /node_modules/,
|
|
317223
|
-
// }),
|
|
317224
|
-
// commonjs(),
|
|
317225
|
-
// analyze(),
|
|
317226
|
-
// generatePackageJson(options, packageJson),
|
|
317227
|
-
// ];
|
|
317228
317179
|
writeDebug2(
|
|
317229
317180
|
`\u{1F4E6} Running Storm Rollup build process on the ${context?.projectName} project`,
|
|
317230
317181
|
config
|