wonderful-boots-93625
07/24/2023, 3:39 PMfile
target? E.g. I have
files(
name = "iai_coral_ui_docker_dev_deps",
sources =[
'package.json',
'iai_common_ui/.storybook/*',
'iai_common_ui/**',
'iai_coral_ui/**',
'.eslint*',
'nx.json',
'package-lock.json',
'tsconfig.base.json',
'tailwind.config.js',
]
)
the iai_common_ui/.storybook/*
isn’t being included when doing pants dependencies
I don’t think it’s being included in a .gitignore
anywhere.high-yak-85899
07/24/2023, 3:43 PMwonderful-boots-93625
07/24/2023, 3:49 PMcareful-address-89803
07/24/2023, 3:51 PM.storybook
is ignored by pants. Adding something like !iai_common_ui/.storybook
under the key [GLOBAL].pants_ignore
in the pants.toml
file should do itcareful-address-89803
07/24/2023, 3:52 PMwonderful-boots-93625
07/24/2023, 3:53 PMfresh-cat-90827
07/25/2023, 6:49 AMpants_ignore.add
would be of help; this .add
and .remove
special syntax only works in Pants's .toml
config files, not in environment variables or command-line flags.