@karmaniverous/stan-cli 0.13.0 → 0.13.1

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.
Files changed (2) hide show
  1. package/dist/cli/stan.js +4 -1
  2. package/package.json +1 -1
package/dist/cli/stan.js CHANGED
@@ -7027,7 +7027,10 @@ const registerRunAction = (cmd, getFlagPresence) => {
7027
7027
  map: built.map,
7028
7028
  clean: true,
7029
7029
  });
7030
- const metaArch = await createMetaArchive(runCwd, config.stanPath);
7030
+ const metaArch = await createMetaArchive(runCwd, config.stanPath, {
7031
+ includes: config.includes ?? [],
7032
+ excludes: config.excludes ?? [],
7033
+ }, { includeOutputDir: derived.behavior.combine });
7031
7034
  console.log(`stan: created meta archive ${path.relative(runCwd, metaArch).replace(/\\/g, '/')}`);
7032
7035
  // "meta archive always created when context is in effect"
7033
7036
  // Pass dependency info to runner so it can do "WithDependencyContext" archives.
package/package.json CHANGED
@@ -159,5 +159,5 @@
159
159
  },
160
160
  "type": "module",
161
161
  "types": "dist/types/index.d.ts",
162
- "version": "0.13.0"
162
+ "version": "0.13.1"
163
163
  }