Jordan Pittman 30538b363f
Update integration tests (#8386)
* Add content glob integration tests

* Use tagged version in parcel integration tests

* Upgrade postcss-cli integration tests

* upgrade integration test deps

* Fix CS

* Fix tests

* Update lockfile

* Fix vite test in CI
2022-05-19 16:44:20 -04:00

27 lines
619 B
JSON

{
"name": "webpack-4",
"private": true,
"version": "0.0.0",
"main": "./src/index.js",
"browser": "./src/index.js",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"test": "jest --runInBand --forceExit"
},
"jest": {
"testTimeout": 10000,
"displayName": "webpack 4",
"setupFilesAfterEnv": [
"<rootDir>/../../jest/customMatchers.js"
]
},
"devDependencies": {
"css-loader": "^5.2.7",
"mini-css-extract-plugin": "^1.6.2",
"postcss-loader": "^4.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.2"
}
}