0.0.27 • Published 7 months ago
@falcon-ng/core v0.0.27
FalconCore
Build
Run ng build @falcon-ng/core to build the project. The build artifacts will be stored in the dist/ directory.
Running unit tests
Run ng test @falcon-ng/core to execute the unit tests via Karma.
Layout design

Angular Dynamic Forms
- Check the Demo.
In Production
- Add the dependencies to the project
npm i @falcon-ng/corePublish to NPM
ng build @falcon-ng/core --configuration=productionnpm login- From the project root folder:
cd dist/@falcon-ng/core npm publish --access publicaccess public is for free version
To unplish the package from NPM
npm unpublish @falcon-ng/core@<version>- If publish error or previous version try the below command
npm unpublish --force @falcon-ng/core@0.0.1 npm publish --force --access public - To update the version of the library, cd into the library project
npm version <new_Version_No>
In Development
- During development the best way to consume library is using
npm linkcd dist/@falcon-ng/core npm link - We can link an Angular project to this library from anywhere on local machine. From the project root folder:
npm link @falcon-ng/core - If we now build the library with the watch flag
ng build @falcon-ng/core --watch, and at the same time runng serve -oto another project in another terminal window. - This will allow us to develop an application and (one or more) linked libraries simultaneously, and see the app recompile with each modification to the library’s source code.
- add
preserveSymlinks = trueto theangular.jsonlocated at the other project{ "architect": { "build": { "builder": "@angular-devkit/build-angular:browser", "options": { "preserveSymlinks": true } } } } - Add falcol core module to the project
import { FalconCoreModule } from '@falcon-ng/core'; import {environment} from "../environments/environment"; @NgModule({ declarations: [], imports:[ FalconCoreModule.forRoot(environment) ], bootstrap: [AppComponent] })
Publish code to GitHub
ng build --configuration=production --output-path docs --base-href /<project_name>/
Example --> ng build --configuration=production --output-path docs --base-href /Angular-Dynamic-Form-Builder/- Reference - https://angular.io/guide/deployment
0.0.20
1 year ago
0.0.21
1 year ago
0.0.22
1 year ago
0.0.23
1 year ago
0.0.24
1 year ago
0.0.25
1 year ago
0.0.26
12 months ago
0.0.27
7 months ago
0.0.10
3 years ago
0.0.11
3 years ago
0.0.12
3 years ago
0.0.13
3 years ago
0.0.14
3 years ago
0.0.15
3 years ago
0.0.9
3 years ago
0.0.16
3 years ago
0.0.8
3 years ago
0.0.17
3 years ago
0.0.7
3 years ago
0.0.5
3 years ago
0.0.6
3 years ago
0.0.3
4 years ago
0.0.2
4 years ago
0.0.4
3 years ago
0.0.1
4 years ago