refactor: init cypress-cucumber-preprocessor install.

This commit is contained in:
2021-09-02 17:02:45 +02:00
parent 89ec2d42ac
commit 1aa57bbd0a
5000 changed files with 408119 additions and 231 deletions

1
node_modules/browserify/example/api/browser/bar.js generated vendored Normal file
View File

@@ -0,0 +1 @@
module.exports = function (n) { return n * 3 };

5
node_modules/browserify/example/api/browser/foo.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
var bar = require('./bar');
module.exports = function (n) {
return n * bar(n);
};

2
node_modules/browserify/example/api/browser/main.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
var foo = require('./foo');
console.log(foo(5));

4
node_modules/browserify/example/api/build.js generated vendored Normal file
View File

@@ -0,0 +1,4 @@
var browserify = require('browserify');
var b = browserify();
b.add('./browser/main.js');
b.bundle().pipe(process.stdout);