Socket
Book a DemoInstallSign in
Socket

ember-gitlab-pages

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-gitlab-pages

Easily manage gitlab pages of your ember-cli project

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

Ember-gitlab-pages

Pretty much lifted bodily (with minor changes) from ember-cli-github-pages

Install and Setup

Pretty much the exact same as the github-pages version:

ember install ember-gitlab-pages

You'll still need to do first time setup onto your pages branch:

git add -A && git commit -m "Added ember-cli-github-pages addon"

Then you need to create the pages branch and remove the unnecessary files:

git checkout --orphan pages && rm -rf `bash -c "ls -a | grep -vE '\.gitignore|\.git|\.gitlab-ci\.yml|node_modules|bower_components|(^[.]{1,2}/?$)'"` && git add -A && git commit -m "initial pages commit"

this addon also ships with a macro for the above command

ember gitlab-pages:init

Usage

Once that's done, it's pretty much the same thing as in github-pages, except replace github with gitlab.

Then run ember gitlab-pages:commit --message "some commit message" in order to rebuild pages branch.

git checkout master
ember gitlab-pages:commit --message "Initial gitlab pages release"

Installation

  • git clone this repository
  • npm install
  • bower install

Running

Running Tests

  • npm test (Runs ember try:testall to test your addon against multiple Ember versions)
  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit http://ember-cli.com/.

Keywords

ember-addon

FAQs

Package last updated on 13 Apr 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts