Skip to content
This repository has been archived by the owner on Dec 25, 2018. It is now read-only.

pyranja/devpack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

devpack

Build Status License

A port of the devpack concept to a pure powershell build system.

Contributing

Prerequisites

Install psake, pester and 7-zip:

choco install -y 7-zip
Install-Module psake
Install-Module pester

Build the devpack

Run

Invoke-psake

to build and assemble a devpack .zip file in the out/ folder.

Run

Invoke-psake test

to execute all module tests after the devpack is built.

Adding a new Module

Run

Invoke-psake CreateModule -Verbose -parameters @{name = '<module-name>'}

That task creates a new subfolder in ./modules/ and prepares

  • a psake module build file (default.ps1)
  • a pester test file
  • a partial evironment variable definition

License

Copyright (C) 2017 Chris Borckholder

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.