Nix NodeJS | 208 Members | |
| 58 Servers |
| Sender | Message | Time |
|---|---|---|
| 9 Nov 2023 | ||
In reply to @szucsitg:matrix.orgThose tarballs aren't exactly guaranteed to never change (and indeed they have in the past) so that might explode some dahy | 16:46:54 | |
In reply to @szucsitg:matrix.org* Those tarballs aren't exactly guaranteed to never change (and indeed they have in the past) so that might explode some day | 16:46:55 | |
| Letting yarn2nix download it as a git repo is probably better | 16:47:05 | |
And it looks like they should support git+https://github.com/duosecurity/duo_web_sdk.git#v2.9 correctly | 16:47:29 | |
| Let me try this | 16:48:02 | |
| It's working 🥳 now i can continue fixing missing package references in our own packages 😅 | 16:55:39 | |
| Thanks again for your help 🙂 | 16:55:48 | |
| oh good! glad it was that easy to fix | 16:58:37 | |
| The next one will be more difficult because our own packages are not in the lock file | 17:02:30 | |
| 10 Nov 2023 | ||
| Soooo Lily Foster I found my issue. The lock file was too old. Is this issue known in nix-prefetch-npm? | 09:11:03 | |
| Issue is that the downloads just deadlock at some point | 09:11:21 | |
| Full reproducer with the original files: https://github.com/dasJ/broken-npm-test | 09:20:23 | |
In reply to @janne.hess:helsinki-systems.deSpooky, i'll try your reproducer later and see what's up | 12:21:05 | |
| I managed to figure out how to build the project mkYarnPackage. I added all packagges as workspaceDependencies, and it displays correctly in the offline cache derivation under node-modules (symlinked from deps). However when I want to build the React frontend a few folders down, it cannot find our own packages, while the node_modules folder correctly symlinked in root to offlineCache. | 16:14:45 | |
| * I managed to figure out how to build the project mkYarnPackage. I added all packagges as workspaceDependencies, and it displays correctly in the offline cache derivation under node-modules (symlinked from deps). However when I want to build the React frontend a few folders down, it cannot find our own packages, while the node_modules folder correctly symlinked in root to offlineCache. Anybody seen such behavior? | 16:15:00 | |
In reply to @szucsitg:matrix.orgi really think trying to symlink node_modules like that is gonna cause more problems than it will solve | 16:15:30 | |
| what's in that "few folders down" you're referring to? | 16:15:44 | |
| (e.g. a new yarn package entirely or workspace package or what?) | 16:15:58 | |
So I've got a project/yarn.lock which is root and the package.json for the frontend to built is under project/web/app | 16:17:18 | |
| I'm open to other suggestion then symlink node-modules in configurePhase | 16:18:09 | |
| * I'm open to other suggestion than symlink node-modules in configurePhase | 16:18:17 | |
| but you aren't using workspace packaging then? | 16:18:29 | |
| just separate yarn packages entirely? | 16:18:35 | |
| I have a derivation as mkYarnPackage, which uses fetchYarnDeps to populate offline cache. And I'm also adding workspace dependencies by iterating through a couple of folders and generating them with mkYarnPackage and inheriting yarnLock and offlineCache | 16:20:40 | |
| Also without symlinking the node_modules in configurePhase the derivation build fail that it cannot unlink folders as they're not empty | 16:25:56 | |
| Like this: | 16:28:08 | |
| Lily Foster: could you help me with packaging my nodejs app? These are the requirements:
This is what I have:
| 22:26:37 | |
| * Lily Foster: could you help me with packaging my nodejs app? These are the requirements: *First, You will need the output directory, the project's package.json, and the production dependencies in node_modules to run the application. Production dependencies can be generated by copying the package.json and package-lock.json and then running npm ci --omit dev (you can skip this step if your app doesn't have any dependencies). You can then start your app with this command: node build This is what I have:
| 22:26:53 | |
I think there are already few faults in there, but this is the first error I have:sh: line 1: vite: command not found | 22:27:56 | |
| (build is output directory, just to give context) | 22:28:40 | |