@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/package.json
CHANGED
|
@@ -77126,55 +77126,6 @@ async function* rollupExecutorFn(options, context, config) {
|
|
|
77126
77126
|
main: options.entry
|
|
77127
77127
|
};
|
|
77128
77128
|
executorOptions.rollupConfig = options.rollupConfig ?? {};
|
|
77129
|
-
+// dependencies
|
|
77130
|
-
// ),
|
|
77131
|
-
// },
|
|
77132
|
-
// }),
|
|
77133
|
-
// typeDefinitions({
|
|
77134
|
-
// projectRoot,
|
|
77135
|
-
// }),
|
|
77136
|
-
// postcss({
|
|
77137
|
-
// inject: true,
|
|
77138
|
-
// extract: options.extractCss,
|
|
77139
|
-
// autoModules: true,
|
|
77140
|
-
// plugins: [autoprefixer],
|
|
77141
|
-
// use: {
|
|
77142
|
-
// less: {
|
|
77143
|
-
// javascriptEnabled: options.javascriptEnabled,
|
|
77144
|
-
// },
|
|
77145
|
-
// },
|
|
77146
|
-
// }),
|
|
77147
|
-
// nodeResolve({
|
|
77148
|
-
// preferBuiltins: true,
|
|
77149
|
-
// extensions: fileExtensions,
|
|
77150
|
-
// }),
|
|
77151
|
-
// useSwc && swc(),
|
|
77152
|
-
// useBabel &&
|
|
77153
|
-
// getBabelInputPlugin({
|
|
77154
|
-
// // Lets `@nx/js/babel` preset know that we are packaging.
|
|
77155
|
-
// caller: {
|
|
77156
|
-
// // @ts-ignore
|
|
77157
|
-
// // Ignoring type checks for caller since we have custom attributes
|
|
77158
|
-
// isNxPackage: true,
|
|
77159
|
-
// // Always target esnext and let rollup handle cjs
|
|
77160
|
-
// supportsStaticESM: true,
|
|
77161
|
-
// isModern: true,
|
|
77162
|
-
// },
|
|
77163
|
-
// cwd: join(
|
|
77164
|
-
// workspaceRoot,
|
|
77165
|
-
// projectNode.data.sourceRoot ?? projectNode.data.root
|
|
77166
|
-
// ),
|
|
77167
|
-
// rootMode: options.babelUpwardRootMode ? 'upward' : undefined,
|
|
77168
|
-
// babelrc: true,
|
|
77169
|
-
// extensions: fileExtensions,
|
|
77170
|
-
// babelHelpers: 'bundled',
|
|
77171
|
-
// skipPreflightCheck: true, // pre-flight check may yield false positives and also slows down the build
|
|
77172
|
-
// exclude: /node_modules/,
|
|
77173
|
-
// }),
|
|
77174
|
-
// commonjs(),
|
|
77175
|
-
// analyze(),
|
|
77176
|
-
// generatePackageJson(options, packageJson),
|
|
77177
|
-
// ];
|
|
77178
77129
|
writeDebug2(
|
|
77179
77130
|
`\u{1F4E6} Running Storm Rollup build process on the ${context?.projectName} project`,
|
|
77180
77131
|
config
|