isofire
TypeScript icon, indicating that this package has built-in type declarations

0.4.10 • Public • Published

Development

Link Isofire within your Project

  1. Link Isofire to your Project
cd PATH_TO/isofire
npm link

cd PATH_TO/project
npm link isofire
  1. Link your Project's rxjs to Isofire (the other way around)
cd node_modules/rxjs
npm link

cd PATH_TO/isofire
npm link rxjs

npm start

Start a new App

mkdir 11bookings && cd 11bookings
code .
git init
git remote add origin git@github.com:rechenberger/11bookings.git
ng new --style=scss --routing --skip-tests --directory client eleven-bookings
code .gitignore
# dependencies
**/node_modules

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# System Files
.DS_Store
Thumbs.db

# VS Code Share (?)
.vs/slnx.sqlite

# Firebase Tools Cache
.firebase
mv client/package.json package.json
mv client/package-lock.json package-lock.json
mv client/node_modules/ node_modules
mv client/angular.json angular.json
sed -i '' s/src/client\\/src/g angular.json
mv client/tslint.json tslint.json
sed -i '' s/..\\/tslint.json/..\\/..\\/tslint.json/g client/src/tslint.json
code tslint.json
# Customize the file as you like

# remove e2e form angular.json to do:
ng lint --fix
ng add @angular/material
npm i rxjs-compat
code client/src/rxjs-compat.ts
# ... add your imports
code client/src/main.ts
# add the following:
import './rxjs-compat'

Readme

Keywords

none

Package Sidebar

Install

npm i isofire

Weekly Downloads

2

Version

0.4.10

License

ISC

Unpacked Size

492 kB

Total Files

357

Last publish

Collaborators

  • rechenberger