remove old versions.json (#5089)

This commit is contained in:
Eugenio Romano
2019-09-20 14:25:41 +01:00
committed by GitHub
parent 7a3fdfb490
commit d00849a015
4 changed files with 1271 additions and 23 deletions

View File

@@ -25,7 +25,6 @@
"demo-shell/src/assets",
"demo-shell/src/favicon-96x96.png",
"demo-shell/src/app.config.json",
"demo-shell/src/versions.json",
{
"glob": "**/*",
"input": "demo-shell/resources",
@@ -166,7 +165,6 @@
"demo-shell/src/assets",
"demo-shell/src/favicon-96x96.png",
"demo-shell/src/app.config.json",
"demo-shell/src/versions.json",
{
"glob": "**/*",
"input": "demo-shell/resources",
@@ -255,7 +253,6 @@
"assets": [
"demo-shell/src/assets",
"demo-shell/src/app.config.json",
"demo-shell/src/versions.json",
{
"glob": "**/*",
"input": "demo-shell/src/assets",
@@ -266,11 +263,6 @@
"input": "demo-shell/src",
"output": "/"
},
{
"glob": "versions.json",
"input": "demo-shell/src",
"output": "/"
},
{
"glob": "**/*",
"input": "demo-shell/resources",
@@ -430,7 +422,6 @@
"assets": [
"demo-shell/src/assets",
"demo-shell/src/app.config.json",
"demo-shell/src/versions.json",
{
"glob": "**/*",
"input": "demo-shell/src/assets",
@@ -441,11 +432,6 @@
"input": "demo-shell/src",
"output": "/"
},
{
"glob": "versions.json",
"input": "demo-shell/src",
"output": "/"
},
{
"glob": "**/*",
"input": "demo-shell/resources",

View File

@@ -52,7 +52,6 @@ app/**/*.d.ts
!app/js/Polyline.js
.idea
**/versions.json
dist/

1264
demo-shell/src/versions.json Normal file

File diff suppressed because one or more lines are too long

View File

@@ -35,16 +35,15 @@
"stylelint": "stylelint ./**/*.scss --config stylelint-config.json",
"04": "echo -------------------------------------------- Demo Shell -----------------------------------------------",
"04s": "",
"start": "ng lint dist && npm run validate-config && npm run server-versions && ng serve dist --open",
"start:dev": "ng lint dev && npm run validate-config && npm run server-versions && concurrently \"ng serve dev --open\" \"npm run style:dev --watch\" ",
"start:dist": "ng lint dist && npm run validate-config && npm run server-versions && ng serve dist --prod --open",
"build": "npm run validate-config && npm run server-versions && ng build dist",
"build:dev": "npm run validate-config && npm run style:dev && npm run server-versions && ng build dev",
"build:dist": "npm run validate-config && npm run server-versions && node --max-old-space-size=12000 node_modules/@angular/cli/bin/ng build dist --prod --stats-json ",
"build:dist:e2e": "npm run validate-config && npm run server-versions && node --max-old-space-size=12000 node_modules/@angular/cli/bin/ng build dist --prod --configuration=e2e --stats-json ",
"start": "ng lint dist && npm run validate-config && ng serve dist --open",
"start:dev": "ng lint dev && npm run validate-config && concurrently \"ng serve dev --open\" \"npm run style:dev --watch\" ",
"start:dist": "ng lint dist && npm run validate-config && ng serve dist --prod --open",
"build": "npm run validate-config && ng build dist",
"build:dev": "npm run validate-config && npm run style:dev && ng build dev",
"build:dist": "npm run validate-config && node --max-old-space-size=12000 node_modules/@angular/cli/bin/ng build dist --prod --stats-json ",
"build:dist:e2e": "npm run validate-config && node --max-old-space-size=12000 node_modules/@angular/cli/bin/ng build dist --prod --configuration=e2e --stats-json ",
"style:dev": "npm run webpack -- --config ./lib/config/webpack.style.js --progress --profile --bail",
"test": "npm run validate-config && ng test dev --watch=false",
"server-versions": "rimraf ./demo-shell/src/versions.json && npm list --depth=0 --json=true --prod=true > ./demo-shell/src/versions.json || exit 0",
"05": "echo -------------------------------------------- E2e -----------------------------------------------",
"05s": "",
"e2e": "./scripts/test-e2e-lib.sh -host 'localhost:4200' -dev --folder demo-shell",