Socket
Socket
Sign inDemoInstall

@web/dev-server-rollup

Package Overview
Dependencies
221
Maintainers
6
Versions
80
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.9 to 0.2.0

30

CHANGELOG.md
# @web/dev-server-rollup
## 0.2.0
### Minor Changes
- 9be1f95: Added native node es module entrypoints. This is a breaking change. Before, native node es module imports would import a CJS module as a default import and require destructuring afterwards:
```js
import playwrightModule from '@web/test-runner-playwright';
const { playwrightLauncher } = playwrightModule;
```
Now, the exports are only available directly as a named export:
```js
import { playwrightLauncher } from '@web/test-runner-playwright';
```
### Patch Changes
- 62ff8b2: make tests work on windows
- Updated dependencies [96dd279]
- Updated dependencies [cdddf68]
- Updated dependencies [fdcf2e5]
- Updated dependencies [62ff8b2]
- Updated dependencies [9be1f95]
- @web/dev-server-core@0.2.0
- @web/test-runner-chrome@0.6.0
- @web/test-runner-core@0.7.0
## 0.1.9

@@ -4,0 +34,0 @@

20

package.json
{
"name": "@web/dev-server-rollup",
"version": "0.1.9",
"version": "0.2.0",
"publishConfig": {

@@ -21,8 +21,4 @@ "access": "public"

"scripts": {
"test": "yarn test:node && yarn test:browser",
"test:browser": "node ../test-runner/dist/test-runner.js test/browser/**/*.test.js --node-resolve",
"test:browser:watch": "node ../test-runner/dist/test-runner.js test/browser/**/*.test.js --node-resolve --watch",
"test:ci": "yarn test",
"test:node": "mocha \"test/node/**/*.test.ts\" --require ts-node/register --reporter progress",
"test:node:watch": "mocha \"test/node/**/*.test.ts\" --require ts-node/register --watch --watch-files src,test --reporter progress"
"test": "mocha \"test/node/**/*.test.ts\" --require ts-node/register --reporter dot",
"test:watch": "mocha \"test/node/**/*.test.ts\" --require ts-node/register --watch --watch-files src,test --reporter dot"
},

@@ -43,3 +39,5 @@ "files": ["dist"],

"dependencies": {
"@web/dev-server-core": "^0.1.9",
"@web/dev-server-core": "^0.2.0",
"@web/test-runner-chrome": "^0.6.0",
"@web/test-runner-core": "^0.7.0",
"chalk": "^4.1.0",

@@ -67,3 +65,9 @@ "parse5": "^6.0.1",

"sinon": "^9.0.2"
},
"exports": {
".": {
"import": "./index.mjs",
"require": "./dist/index.js"
}
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc