Skip to content

bullcodeapps/standards

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Bullcode Standards

  1. Projects
    1. Angular
    2. Ionic
    3. React

1. Projects

  • Every project must have these commands for running/building
...
  "scripts": {
    "start": "...",
    "start:dev": "...",
    "build": "...",
    "build:release": "...",
    ...
  }
... 

1.1 Angular

...
  "scripts": {
    "start": "ng serve",
    "start:dev": "ng serve",
    "build": "node pre-build.js && ng build --prod --aot",
    "build:release": "npm run build",
    ...
  }
... 

1.2 Ionic

...
  "scripts": {
    "start": "ionic cordova run android",
    "start:dev": "ionic cordova run android --device -lcs",
    "build": "ionic cordova build",
    "build:release": "npm run build:release:android && npm run build:release:ios",
    "build:release:android": "ionic cordova build android --prod --aot --minifyjs --minifycss --optimizejs --release",
    "build:release:ios": "ionic cordova build ios --prod --aot --minifyjs --minifycss --optimizejs --release",
    ...
  }
... 

1.3 React

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published