Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

copy assets to specified directory? #34

Open
zoubin opened this issue Jun 27, 2015 · 4 comments
Open

copy assets to specified directory? #34

zoubin opened this issue Jun 27, 2015 · 4 comments

Comments

@zoubin
Copy link
Contributor

zoubin commented Jun 27, 2015

Right now we can specify assetPath, which determines the value of url(value) in css, and the destination of the copied asset will be calculated based on this info.
That is very convenient if we want to specify a url(value) in css.

I am handling cases where the value in url(value) does not matter as long as it is right, but the destination of the copied asset does.

Here is an example.

css file /path/to/src/page/index/index.css:

.sp-icon {
  background-image: url(i/sp-icon.png);
}

the asset file is /path/to/src/page/index/i/sp-icon.png

I want to build css to /path/to/build/page/index/index.css, and the sprite to /path/to/build/sp/sp-icon.png.

So, in /path/to/build/page/index/index.css, it looks like:

.sp-icon {
  background-image: url(../../sp/sp-icon.png);
}

Any idea how to achieve this?

@MoOx
Copy link
Contributor

MoOx commented Jun 29, 2015

If one of the provided callback for url option doesn't work for you, you can always use a custom function https://github.com/postcss/postcss-url#url-function

@lexich
Copy link
Contributor

lexich commented Jun 29, 2015

The same problem.

@tinchoz49
Copy link
Contributor

Hi guys! @zoubin i understand your problem, the next week i'm going to refactory the copy method and fix that issue.

tinchoz49 added a commit to tinchoz49/postcss-url that referenced this issue Jul 7, 2015
@alexmchardy
Copy link

FYI to people who are looking for this feature: since the above were closed and not really resolved, I ended up creating postcss-copy-assets.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants