mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 17:42:15 +08:00
remove sync commands
This commit is contained in:
@ -6,7 +6,6 @@
|
|||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
"sync:build": "sh scripts/build-ionic.sh",
|
"sync:build": "sh scripts/build-ionic.sh",
|
||||||
"sync": "sh scripts/sync.sh",
|
|
||||||
"build": "ng build --configuration production --no-progress",
|
"build": "ng build --configuration production --no-progress",
|
||||||
"lint": "ng lint",
|
"lint": "ng lint",
|
||||||
"postinstall": "ngcc",
|
"postinstall": "ngcc",
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
"sync:build": "sh scripts/build-ionic.sh",
|
"sync:build": "sh scripts/build-ionic.sh",
|
||||||
"sync": "sh scripts/sync.sh",
|
|
||||||
"build": "ng build --configuration production --no-progress",
|
"build": "ng build --configuration production --no-progress",
|
||||||
"lint": "ng lint",
|
"lint": "ng lint",
|
||||||
"postinstall": "ngcc",
|
"postinstall": "ngcc",
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
"sync:build": "sh scripts/build-ionic.sh",
|
"sync:build": "sh scripts/build-ionic.sh",
|
||||||
"sync": "sh scripts/sync.sh",
|
|
||||||
"build": "ng build --configuration production --no-progress",
|
"build": "ng build --configuration production --no-progress",
|
||||||
"lint": "ng lint",
|
"lint": "ng lint",
|
||||||
"serve:ssr": "node dist/test-app/server/main.js",
|
"serve:ssr": "node dist/test-app/server/main.js",
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
"sync:build": "sh scripts/build-ionic.sh",
|
"sync:build": "sh scripts/build-ionic.sh",
|
||||||
"sync": "sh scripts/sync.sh",
|
|
||||||
"build": "ng build --configuration production --no-progress",
|
"build": "ng build --configuration production --no-progress",
|
||||||
"lint": "ng lint",
|
"lint": "ng lint",
|
||||||
"serve:ssr": "node dist/test-app/server/main.js",
|
"serve:ssr": "node dist/test-app/server/main.js",
|
||||||
|
@ -28,8 +28,7 @@
|
|||||||
"test": "cypress open",
|
"test": "cypress open",
|
||||||
"cypress": "node_modules/.bin/cypress run --headless --browser chrome",
|
"cypress": "node_modules/.bin/cypress run --headless --browser chrome",
|
||||||
"cypress.open": "cypress open",
|
"cypress.open": "cypress open",
|
||||||
"e2e": "concurrently \"serve -s build -l 3000\" \"wait-on http-get://localhost:3000 && pnpm run cypress\" --kill-others --success first",
|
"e2e": "concurrently \"serve -s build -l 3000\" \"wait-on http-get://localhost:3000 && pnpm run cypress\" --kill-others --success first"
|
||||||
"sync": "sh ./scripts/sync.sh"
|
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"extends": [
|
"extends": [
|
||||||
|
@ -22,7 +22,6 @@
|
|||||||
"build": "react-scripts build",
|
"build": "react-scripts build",
|
||||||
"test": "react-scripts test --env=jsdom --transformIgnorePatterns 'node_modules/(?!(@ionic/react|@ionic/react-router|@ionic/core|@stencil/core|ionicons)/)'",
|
"test": "react-scripts test --env=jsdom --transformIgnorePatterns 'node_modules/(?!(@ionic/react|@ionic/react-router|@ionic/core|@stencil/core|ionicons)/)'",
|
||||||
"eject": "react-scripts eject",
|
"eject": "react-scripts eject",
|
||||||
"sync": "sh ./scripts/sync.sh",
|
|
||||||
"cypress": "cypress run --headless --browser chrome",
|
"cypress": "cypress run --headless --browser chrome",
|
||||||
"cypress.open": "cypress open",
|
"cypress.open": "cypress open",
|
||||||
"e2e": "concurrently \"serve -s build -l 3000\" \"wait-on http-get://localhost:3000 && pnpm run cypress\" --kill-others --success first"
|
"e2e": "concurrently \"serve -s build -l 3000\" \"wait-on http-get://localhost:3000 && pnpm run cypress\" --kill-others --success first"
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
"start": "vite",
|
"start": "vite",
|
||||||
"build": "tsc && vite build",
|
"build": "tsc && vite build",
|
||||||
"test": "vitest",
|
"test": "vitest",
|
||||||
"sync": "sh ./scripts/sync.sh",
|
|
||||||
"cypress": "cypress run --headless --browser chrome",
|
"cypress": "cypress run --headless --browser chrome",
|
||||||
"cypress.open": "cypress open",
|
"cypress.open": "cypress open",
|
||||||
"e2e": "concurrently \"serve -s dist -l 3000\" \"wait-on http-get://localhost:3000 && pnpm run cypress\" --kill-others --success first"
|
"e2e": "concurrently \"serve -s dist -l 3000\" \"wait-on http-get://localhost:3000 && pnpm run cypress\" --kill-others --success first"
|
||||||
|
@ -12,8 +12,7 @@
|
|||||||
"lint": "eslint --ext .js,.vue,.ts --ignore-path .gitignore --fix src",
|
"lint": "eslint --ext .js,.vue,.ts --ignore-path .gitignore --fix src",
|
||||||
"cypress": "node_modules/.bin/cypress run --headless --browser chrome",
|
"cypress": "node_modules/.bin/cypress run --headless --browser chrome",
|
||||||
"cypress.open": "cypress open",
|
"cypress.open": "cypress open",
|
||||||
"start": "pnpm run dev",
|
"start": "pnpm run dev"
|
||||||
"sync": "sh ./scripts/sync.sh"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@ionic/vue": "workspace:*",
|
"@ionic/vue": "workspace:*",
|
||||||
|
Reference in New Issue
Block a user