Skip to content

v0.1.15

Latest

Choose a tag to compare

@koistya koistya released this 30 Jan 16:07
b20a912

External Pattern Support

Patterns referencing parent directories (../) now skip .gitignore filtering since it only applies to files within the working directory.

// srcpack.config.ts
export default {
  bundles: {
    context: {
      include: [
        "src/**/*.ts",           // Respects .gitignore
        "../shared/utils/**/*",  // Skips .gitignore (external)
      ],
    },
  },
};

Full Changelog: v0.1.14...v0.1.15