Skip to content

Commit de05db5

Browse files
authored
feat(generators): v8 repackaging (#131)
* Ionic 4.7 * {N} 6 * cleanup packaging and fix issues
1 parent fef25cf commit de05db5

File tree

1,041 files changed

+32678
-16414
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,041 files changed

+32678
-16414
lines changed

.gitignore

+12-30
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,14 @@
1-
# IDEs
2-
.idea/
3-
jsconfig.json
4-
5-
# Outputs
6-
e2e/**/*.js
7-
e2e/**/*.js.map
8-
scripts/**/*.js
9-
scripts/**/*.js.map
10-
!scripts/tools/**/*.js
11-
src/**/*.js
12-
src/**/*.js.map
13-
!src/app.nativescript/_files/tools/*.js
14-
!src/app.nativescript/_files/webpack.config.js
15-
!src/xplat/_testing_files/karma.conf.js
16-
tmp
17-
18-
*.tgz
19-
src/**/*.ngfactory.d.ts
20-
!src/app.nativescript/_files/app/app.module.ngfactory.d.ts
21-
.angulardoc.json
22-
23-
# Mac OSX Finder files.
24-
**/.DS_Store
1+
node_modules
2+
.idea
3+
/.vscode
4+
dist
5+
/build
6+
/coverage
7+
test
258
.DS_Store
9+
tmp
10+
*.log
11+
.ng_pkg_build
12+
jest.debug.config.js
2613

27-
# Misc
28-
node_modules/
29-
npm-debug.log*
30-
yarn-error.log*
31-
32-
package-lock.json
14+
package-lock.json

.npmignore

-12
This file was deleted.

.prettierignore

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
tmp
2+
/test
3+
/build
4+
node_modules
5+
/package.json
6+
packages/angular/src/schematics/**/_**files/**/*.json
7+
packages/electron/src/schematics/**/_**files/**/*.json
8+
packages/ionic/src/schematics/**/_**files/**/*.json
9+
packages/nativescript/src/schematics/**/_**files/**/*.json
10+
packages/nativescript/src/schematics/**/App_Resources/**/*
11+
packages/nativescript/src/schematics/**/hooks/**/*
12+
packages/nativescript/src/schematics/**/tools/**/*
13+
packages/nativescript/src/schematics/**/src/assets/*.min.css
14+
packages/web/src/schematics/**/_*/**/*.json
15+
packages/xplat/src/schematics/**/_*/**/*.json
16+
/.vscode
17+
/.idea
18+
/.github
19+
/coverage

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"singleQuote": true,
3+
"endOfLine": "lf"
4+
}

.travis.yml

+23-10
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,29 @@
1-
language: node_js
2-
dist: trusty
3-
sudo: required
4-
node_js:
5-
- '8.9.3'
1+
matrix:
2+
include:
3+
- os: linux
4+
language: node_js
5+
node_js: 10
6+
dist: trusty
7+
sudo: required
8+
addons:
9+
chrome: stable
10+
611
before_install:
7-
- export DISPLAY=:99.0
12+
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
13+
export DISPLAY=:99.0;
14+
sh -e /etc/init.d/xvfb start;
15+
fi
16+
817
install:
9-
- sh -e /etc/init.d/xvfb start
10-
- npm install --ignore-scripts
18+
- yarn install --network-timeout 1000000 # Timeout needed for Windows (really slow)
1119
script:
12-
- npm test
13-
- npm run e2e
20+
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then yarn checkformat --head=$TRAVIS_PULL_REQUEST_SHA --base=$(git merge-base HEAD $TRAVIS_BRANCH); fi'
21+
- yarn test
22+
# - yarn e2e
23+
- yarn checkcommit
24+
# - yarn checkimports
25+
# - yarn documentation
26+
1427
addons:
1528
chrome: stable
1629
cache:

.vscode/settings.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
"activityBar.inactiveForeground": "#15202b99",
3131
"activityBarBadge.background": "#8af4a3",
3232
"activityBarBadge.foreground": "#15202b",
33-
"titleBar.activeBackground": "#eb5424",
34-
"titleBar.inactiveBackground": "#eb542499",
33+
"titleBar.activeBackground": "#eb5324",
34+
"titleBar.inactiveBackground": "#eb532499",
3535
"titleBar.activeForeground": "#e7e7e7",
3636
"titleBar.inactiveForeground": "#e7e7e799",
37-
"statusBar.background": "#eb5424",
37+
"statusBar.background": "#eb5324",
3838
"statusBarItem.hoverBackground": "#ef7853",
3939
"statusBar.foreground": "#e7e7e7"
4040
}

0 commit comments

Comments
 (0)