mustela

mustela

Local package development and deps directory

Hello everyone!

Im working on a library (similar to Petal, but the difference is that it also provides some js and css files.

So in my mix project I have the following code to let me decide when to work on the library

def palette_dep(true = _local) do
    [{:palette, path: "../palette"}]
  end

  def palette_dep(false) do
    [
      {:palette, git: "https://github.com/myorg/palette", tag: "0.1.3"}
    ]
  end

In the project package.json file I have

{
  "dependencies": {
    "palette": "file:../deps/palette"
  }
}

So then I can reference the css in the app.css doing @import "palette". So far so good…

The problem appears when I have to work locally, the reference "palette": "file:../deps/palette" is no longer valid because the library is not being compiled in the deps folder, so the css doesn’t load. I tried to change the package.json to

{
  "dependencies": {
    "palette": "file:../deps/palette"
  },
  "devDependencies": {
    "palette": "file:../../palette"
  }
}

And that works great, but it fails when I try to compile the assets in production since it seems that the esbuild/tailwing are also trying to compile devDependencies (which is odd?) and fails because "palette": "file:../../palette" doesn’t exists.

Step 20/21 : RUN mix assets.deploy
 ---> Running in 2513e72966ee
 
00:08:42.001 [debug] Downloading esbuild from https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.29.tgz
 
  ../priv/static/assets/app.js  825.7kb
 
:zap: Done in 169ms
 
  ../priv/static/assets/app.js               825.7kb  100.0%
   └ ../deps/palette/priv/static/palette.js  825.2kb   99.9%
 
00:08:42.573 [debug] Downloading tailwind from https://github.com/tailwindlabs/tailwindcss/releases/download/v3.1.8/tailwindcss-linux-x64
/snapshot/tailwindcss/node_modules/postcss-import/lib/resolve-id.js:35
      throw new Error(
            ^
 
Error: Failed to find 'palette'
  in [
    /app/assets/css
  ]
    at /snapshot/tailwindcss/node_modules/postcss-import/lib/resolve-id.js:35:13
    at async LazyResult.runAsync (/snapshot/tailwindcss/node_modules/postcss/lib/lazy-result.js:396:11)

So when working locally is there any to force to compile the library in the deps directory? Or is there any guide, doc, example of building this kind of resources?

Thanks a lot!

Where Next?

Popular in Questions Top

chokchit
** (DBConnection.ConnectionError) connection not available and request was dropped from queue after 2733ms. You can configure how long re...
New
aadeshere1
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible. total = 10 while total != 0 ...
New
gshaw
What is the idiomatic way of matching for not nil in Elixir? E.g., First way: defp halt_if_not_signed_in(conn, signed_in_account) when...
New
JeremM34
Hello, how can I check the Phoenix version ? Thanks !
New
minhajuddin
I have seen a lot of code which picks the first element from a list using Enum.at(0) instead of List.first. Is there a reason why people ...
New
fireproofsocks
Forgive me if this is obvious, but how does one delete a database record WITHOUT selecting it first? Ecto.Repo — Ecto v3.14.0 has exampl...
New
jay1
Why is it that the mnesia database isn’t the most preferred database for use in Elixir/Phoenix?
New
freewebwithme
Using vs code and installed ElixirLS: support and debugger. And I got an error popped up on start up says Failed to run ‘elixir’ comma...
New
rms.mrcs
Hi, I need to transform a list of numbers into a map where the keys are the indexes and the values are the original values of the list. ...
New
Brian
What is the proper way to load a module from a file in to IEX? In the python world, doing something like this pretty standard: from ....
New

Other popular topics Top

danschultzer
None of the current solutions worked well for me, so I went ahead and built a user management system from scratch. This project took far...
548 29377 241
New
shahryarjb
Hello, I have map which I want to convert it to string like this: the map: %{last_name: "tavakkoli", name: "shahryar"} the string I ne...
New
JorisKok
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New
dokuzbir
I want to highlight html closing tags when i click a html tag. That works in .html files but doesnt work for html.eex templates. How can...
New
vrod
I am using the Starship cross-shell prompt – it seems pretty nice, but I get some errors: [WARN] - (starship::utils): Executing command ...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
Qqwy
Original source of discussion: This topic on the Pragmatic Programmers’ Functional Web Development with Elixir, OTP, and Phoenix forum. ...
New
saif
Hello everyone, Long time lurker first time poster here. I’ve recently begun working on Elixir full-time again! :raised_hands: It’s been...
New
KronicDeth
Elixir plugin for JetBrain’s IntelliJ Platform (including Rubymine) This is a plugin that adds support for Elixir to JetBrains IntelliJ...
289 36128 110
New
AstonJ
We’ve put together this wiki for Phoenix LiveView - please feel free to add any info you feel is worth including. What is Phoenix LiveV...
New

We're in Beta

About us Mission Statement