Skip to content

Commit

Permalink
feat(generators): v8 repackaging (#131)
Browse files Browse the repository at this point in the history
* Ionic 4.7
* {N} 6
* cleanup packaging and fix issues
  • Loading branch information
NathanWalker authored Jul 29, 2019
1 parent fef25cf commit de05db5
Show file tree
Hide file tree
Showing 1,041 changed files with 32,678 additions and 16,414 deletions.
42 changes: 12 additions & 30 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,32 +1,14 @@
# IDEs
.idea/
jsconfig.json

# Outputs
e2e/**/*.js
e2e/**/*.js.map
scripts/**/*.js
scripts/**/*.js.map
!scripts/tools/**/*.js
src/**/*.js
src/**/*.js.map
!src/app.nativescript/_files/tools/*.js
!src/app.nativescript/_files/webpack.config.js
!src/xplat/_testing_files/karma.conf.js
tmp

*.tgz
src/**/*.ngfactory.d.ts
!src/app.nativescript/_files/app/app.module.ngfactory.d.ts
.angulardoc.json

# Mac OSX Finder files.
**/.DS_Store
node_modules
.idea
/.vscode
dist
/build
/coverage
test
.DS_Store
tmp
*.log
.ng_pkg_build
jest.debug.config.js

# Misc
node_modules/
npm-debug.log*
yarn-error.log*

package-lock.json
package-lock.json
12 changes: 0 additions & 12 deletions .npmignore

This file was deleted.

19 changes: 19 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
tmp
/test
/build
node_modules
/package.json
packages/angular/src/schematics/**/_**files/**/*.json
packages/electron/src/schematics/**/_**files/**/*.json
packages/ionic/src/schematics/**/_**files/**/*.json
packages/nativescript/src/schematics/**/_**files/**/*.json
packages/nativescript/src/schematics/**/App_Resources/**/*
packages/nativescript/src/schematics/**/hooks/**/*
packages/nativescript/src/schematics/**/tools/**/*
packages/nativescript/src/schematics/**/src/assets/*.min.css
packages/web/src/schematics/**/_*/**/*.json
packages/xplat/src/schematics/**/_*/**/*.json
/.vscode
/.idea
/.github
/coverage
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": true,
"endOfLine": "lf"
}
33 changes: 23 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,29 @@
language: node_js
dist: trusty
sudo: required
node_js:
- '8.9.3'
matrix:
include:
- os: linux
language: node_js
node_js: 10
dist: trusty
sudo: required
addons:
chrome: stable

before_install:
- export DISPLAY=:99.0
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
export DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
fi

install:
- sh -e /etc/init.d/xvfb start
- npm install --ignore-scripts
- yarn install --network-timeout 1000000 # Timeout needed for Windows (really slow)
script:
- npm test
- npm run e2e
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then yarn checkformat --head=$TRAVIS_PULL_REQUEST_SHA --base=$(git merge-base HEAD $TRAVIS_BRANCH); fi'
- yarn test
# - yarn e2e
- yarn checkcommit
# - yarn checkimports
# - yarn documentation

addons:
chrome: stable
cache:
Expand Down
6 changes: 3 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#8af4a3",
"activityBarBadge.foreground": "#15202b",
"titleBar.activeBackground": "#eb5424",
"titleBar.inactiveBackground": "#eb542499",
"titleBar.activeBackground": "#eb5324",
"titleBar.inactiveBackground": "#eb532499",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveForeground": "#e7e7e799",
"statusBar.background": "#eb5424",
"statusBar.background": "#eb5324",
"statusBarItem.hoverBackground": "#ef7853",
"statusBar.foreground": "#e7e7e7"
}
Expand Down
Loading

0 comments on commit de05db5

Please sign in to comment.