Questions tagged [linemanjs]

A CLI tool to provide a thin wrapper around client-side tools (grunt, testem, etc) that enables some sane conventions which allow developers to get first-class web apps up and running quicker

Lineman is a command-line utility that is hyper-focused on helping web developers build first-class JavaScript web applications. Lineman provides a thin wrapper around a number of client-side productivity tools (primarily Express, Grunt, and Testem), with the goal of helping developers focus on writing awesome web apps instead of worrying about workflow configuration

19 questions
4
votes
0 answers

Bundling Angular 2.0 source files into one vendor file for deployment

I'm starting new project which will be based on some legacy code which was written using https://github.com/linemanjs/lineman-angular-template lineman-angular-template and Angular 1.5 components But all new stuff i want to write as Angular 2…
VladosJS
  • 1,210
  • 8
  • 20
2
votes
0 answers

Does ember-cli compare favorably to linemanjs for front-end build management?

I'm planning on building a web application with an EmberJS front-end that talks to a Flask-based RESTful API. I was originally excited to get going with lineman to help tackle the front-end, but recently I've been introduced to ember-cli. Ember-cli…
1
vote
1 answer

What is the best way to migrate a linemanjs angular 1 application to angular 2

I built an Angular 1 application built using Linenanjs. I'm in the process to migrate it to Angular 2. I've integrated Typescript and removed ng-app. The next step is to integrate the Angular 2 libraries and start the actual migration. Before I do I…
1
vote
0 answers

How can I run a lineman project in Jenkins so the protractor tests can find the browser?

I have a project which is setup with lineman and uses maven for build configurations. A maven pom.xml file is used to configure the jenkins builds. This file lists the necessary tasks that need to be done in order to build the project. The lineman…
Chantal
  • 959
  • 2
  • 12
  • 24
1
vote
0 answers

Warning: missing space before text for line 2 of jade file

I already checked these links before posting my questions but none suffice to my case. Link 1 - Warning: missing space before text for line 20 of jade file Link 2 - Jade - missing space before text for line x of jade file Following is the error…
Trialcoder
  • 5,816
  • 9
  • 44
  • 66
1
vote
1 answer

Reference vendor folder css and js in linemanjs

I am creating a web app using linemanjs but when I am referencing vendor css and js files explicitly it wont reference to that location. Let me know what I am doing wrong with linemanjs. Simple things that I tried in my files is…
Trialcoder
  • 5,816
  • 9
  • 44
  • 66
1
vote
3 answers

What is JST in angular template?

Recently I came across a code chunck where JST is added before the template in angular - Example - $routeProvider .when("/login", { template: JST["app/templates/login"], controller: "LoginController" }) Previously, I do like this…
Trialcoder
  • 5,816
  • 9
  • 44
  • 66
0
votes
1 answer

Grunt & Lineman - run task with parameters

Is it possible to parametrize already existing grunt task? F.e. there is a pages task where I would like to add some additional actions based on my custom parameter. I've been trying to add something like that in my application.js ... pages: { …
pzeszko
  • 1,989
  • 18
  • 29
0
votes
1 answer

Lineman spec-ci in jenkins

I have installed nodejs, npm, lineman, jenkins, and phantomjs on red hat. I am trying to run a jenkins job that just runs lineman spec-ci to run my test-em tests. When I run this command as the jenkins user on the terminal, it runs. Unfortunately,…
0
votes
1 answer

How to tell Lineman to copy all files from /dist to a different directory?

When I run lineman build it generates all the minified CSS and JS in the /dist directory. I can't figure out how to make it copy those minified files into a different directory( My Public Directory at path - ../lib/app/public). My Lineman…
Praveen Puglia
  • 5,577
  • 5
  • 34
  • 68
0
votes
1 answer

Workflow for simple static websites

I always used to deploy even single websites with some kind of back-end service, mostly PHP-framework. But ive been lately looking for a better alternative. I would like to use tools like Grunt/Gulp with concat, lint, liveReload SASS And just upload…
Martin Malinda
  • 1,573
  • 11
  • 20
0
votes
1 answer

Headless Selenium/Protractor not sending output to Firefox

I am using: Firefox 30 selenium-server-standalone-2.43.1.jar Xvfb Ubuntu Headless Lineman grunt spec-e2e I am able to run Xvfb, Firefox, and lineman grunt spec-e2e with no errors. On all terminals I run export DISPLAY=:10 I run Xvfb :10 -ac in one…
dman
  • 10,406
  • 18
  • 102
  • 201
0
votes
1 answer

How do I add a javascript file out of app.js in Lineman , in the beginning of the HTML?

I'm using Lineman and I have to include Modernizr.js before the body tag in my page. The regular app.js should be in its default location, at the end of the body. It happens that every javascript file I include in the project gets bundled inside…
6qat
  • 826
  • 6
  • 5
0
votes
2 answers

How to avoid minification of JS files in linemanjs

Following is the lineman - config file - http://pastebin.com/ZuNzDY8S application file - http://pastebin.com/rSPdeSME Now whenever I am running the command lineman run I am getting app.js | vendor.js | plugin.js js files into my generated folder as…
Trialcoder
  • 5,816
  • 9
  • 44
  • 66
0
votes
0 answers

angular-spinner - Fatal error: Unable to find suitable version for angular

I want to use angular-spinner in my project (lineman + angularjs). My bower.json: { "name": "taas", "version": "0.0.1", "dependencies": { "angular": "~1.2.14", "angular-ui-bootstrap": "~0.10.0", "jquery": "~2.1.0", …
pmichna
  • 4,800
  • 13
  • 53
  • 90
1
2