Fork me on GitHub
#cljsjs
<
2016-09-10
>
mikebelanger15:09:21

@flyboarder thanks, ok I’ve included them

mikebelanger15:09:59

Now I’m running into another obstacle. I’m trying to make this package according to these instructions: https://github.com/cljsjs/packages/wiki/Creating-Packages . I’m at the step where I invoke the package command. It says it generated a .jar and a .pom, but I don’t see the files anywhere. I searched my entire HD, and it isn’t there. I should mention I didn’t include the .md5 checksum in the (download) task, could that be the reason it didn’t make the file?

flyboarder17:09:03

@mikebelanger: how are you building your package? build-jar from bootlaces should do it

mikebelanger17:09:55

@flyboarder I’m building with all the package task, which has a bunch of sub-tasks in it : https://github.com/mikebelanger/blend4web/blob/master/build.boot

flyboarder17:09:53

Oh lol, here run like this boot package install

mikebelanger17:09:55

Regarding boot-laces project, that looks pretty awesome, I guess I just feel like there’s something wrong with my build tasks, and I should learn how to fix those before I start using other tools

flyboarder17:09:14

Install is built in I believe

flyboarder17:09:58

You would have to do the same with other boot tools

mikebelanger17:09:30

@flyboarder lol thanks! That installed it! I had a feeling it was something basic I was missing

flyboarder17:09:28

Yeah that one frustrates me too when I forget it

flyboarder17:09:17

@mikebelanger: but at least your task is fine :)

mikebelanger17:09:56

When I just wrote boot package it said it wrote the jar and pom files, so I was looking around forever 😛 I guess it just wrote those files to the FileSet thing that boot uses

mikebelanger17:09:44

@flyboarder thanks yeah I was looking at my task function forever too 😛

flyboarder17:09:33

Yeah boot only works on the fileset, to move your builds to local maven you need install

mikebelanger17:09:47

and thanks for the tip about boot-laces, I’ll have to look into that template