1.0.1 • Published 3 years ago

@pavan.finpower/web1 v1.0.1

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

Setup

Install

A symbolic link needs to exist from the consuming app to this library's dist folder

  • Use the following PS command from the app root folder to create a symbolic link to this project

new-item -itemtype symboliclink -path . -name "@finpower" -value ../framework/dist

Usage

ng build web --watch yarn web

Versioning

\ web/package.json contains the library version

{
  "name": "@finpower/web",
  "version": "1.0.0",
  ...
}
  1. MAJOR version when you make incompatible API changes,
  2. MINOR version when you add functionality in a backwards compatible manner, and
  3. PATCH version when you make backwards compatible bug fixes.
    Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.

Consuming App

  • Apps should be able to upgrade easily within a major version without risk of breaking.

  • It is the app's responsibility to meet required peer dependencies.
    No yarn support for automating this.

  • The app's package.json must specify the required framework version.
    A mismatch will cause a build error.

{
	"name": "aquamore",
	"version": "2.0.8",
	"dependencies": {
		"@finpower/web": "1.0.0"
	}
}
1.0.1

3 years ago

1.0.0

3 years ago