mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-22 06:59:30 -06:00
* chore(deps): update gulp to 4.0.2 🌟 * remove unused gulp-typescript package * rename gulpDebug dep for consistency * remove run-sequence dep - replace with new gulp.sequence and gulp.parallel * pass new sourcemaps arg through to gulp-coffee * fix favicon task that I broke. 😬 * fix extension gulpfile - needed those returns :P - also update vinyl-source-stream to avoid vinyl errors during gulp tasks * Fix example gulpfile to allow empty sources Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Jennifer Shehane <jennifer@cypress.io>
26 lines
652 B
JSON
26 lines
652 B
JSON
{
|
|
"name": "@packages/static",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"prebuild": "npm run check-deps-pre",
|
|
"build": "gulp build",
|
|
"build-prod": "npm run build",
|
|
"check-deps": "node ../../scripts/check-deps.js --verbose",
|
|
"check-deps-pre": "npm run check-deps -- --prescript",
|
|
"clean-deps": "rm -rf node_modules",
|
|
"postinstall": "echo '@packages/static needs: npm run build'",
|
|
"pretest": "npm run check-deps-pre",
|
|
"test": "echo 'Nothing to test yet'"
|
|
},
|
|
"devDependencies": {
|
|
"@cypress/icons": "0.7.0",
|
|
"gulp": "4.0.2"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"lib"
|
|
]
|
|
}
|