Update with working working version (#12)

* Fix workflow

* Trigger

* [auto] Update compiled version

* [auto] Commit modules

* Push Windows changes

* Fix

* [auto] Update compiled version

* Try removing cwd

* [auto] Update compiled version

* Try with path module

* [auto] Update compiled version

* Fix path

* [auto] Update compiled version

* Use raw path

* [auto] Update compiled version

* Other path

* [auto] Update compiled version

* Avoid @action/exec

* [auto] Update compiled version

* test

* [auto] Update compiled version

* test

* [auto] Update compiled version

* test

* [auto] Update compiled version

* test

* [auto] Update compiled version

* Try with shelljs

* [auto] Update compiled version

* Fix my stupidity

* Copy scripts to local dir

* [auto] Update compiled version

* Still use path

* [auto] Update compiled version

* Delete entrypoint.sh

* [auto] Update compiled version

* Make file executable

* [auto] Update compiled version

* Try using bash

* [auto] Update compiled version
This commit is contained in:
Federico Grandi
2019-12-14 21:47:13 +01:00
committed by GitHub
parent d81e04e96c
commit f118062594
4276 changed files with 1075004 additions and 40 deletions

22
node_modules/babel-plugin-minify-replace/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,22 @@
Copyright (c) 2015-2016 Amjad Masad <amjad.masad@gmail.com>
MIT License
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

91
node_modules/babel-plugin-minify-replace/README.md generated vendored Normal file
View File

@@ -0,0 +1,91 @@
# babel-plugin-minify-replace
Configurable "search and replace" plugin. Replaces matching nodes in the tree with a given replacement node. For example you can replace `process.NODE_ENV` with `"production"`.
## Example
**Options**
```javascript
[
{
identifierName: "__DEV__",
replacement: {
type: "numericLiteral",
value: 0,
},
},
]
```
**In**
```javascript
if (!__DEV__) {
foo();
}
if (a.__DEV__) {
foo();
}
```
**Out**
```javascript
if (!0) {
foo();
}
if (a.__DEV__) {
foo();
}
```
## Installation
```sh
npm install babel-plugin-minify-replace --save-dev
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
// without options
{
"plugins": ["minify-replace"]
}
```
```json
// with options
{
"plugins": [
["minify-replace", {
"replacements": [{
"identifierName": "__DEV__",
"replacement": {
"type": "booleanLiteral",
"value": true
}
}]
}]
]
}
```
### Via CLI
```sh
babel --plugins minify-replace script.js
```
### Via Node API
```javascript
require("@babel/core").transform("code", {
plugins: ["minify-replace"]
});
```

100
node_modules/babel-plugin-minify-replace/lib/index.js generated vendored Normal file
View File

@@ -0,0 +1,100 @@
"use strict";
module.exports = ({
types: t
}) => {
const NO_MEMBER = Symbol("no member");
const replaceVisitor = {
ReferencedIdentifier(path) {
const _path = path,
node = _path.node;
const optionsMap = this.replacements[node.name];
if (!optionsMap) {
return;
}
let options;
if (path.parentPath.isMemberExpression({
object: node
})) {
const property = path.parent.property;
const key = t.isIdentifier(property) && property.name;
if (typeof key === "string") {
options = optionsMap[key];
path = path.parentPath;
}
}
if (!options) {
options = optionsMap[NO_MEMBER];
}
if (!options) {
return;
}
path.replaceWith(options.node);
}
};
return {
name: "minify-replace",
visitor: {
Program(path) {
/**
Replacements is an array of objects like this:
{
identifierName: 'console',
member: 'log', // optional
replacement: {
type: 'identifier',
value: '',
},
}
**/
if (!this.opts.replacements) {
// No replacements. Bail.
return;
}
const map = Object.create(null);
this.opts.replacements.forEach(({
identifierName,
replacement,
member
}) => {
if (path.scope.globals[identifierName]) {
// Convert to a node, we only allow identifiers and literals as replacements
if (!replacement.type.match(/literal|identifier/i)) {
throw new Error("Only literals and identifier are supported as replacements");
}
const node = t[replacement.type](replacement.value);
const options = {
identifierName,
node,
member
};
if (!map[identifierName]) {
map[identifierName] = {};
}
if (member && map[identifierName][member]) {
throw new Error(`Replacement collision ${identifierName}.${member}`);
}
map[identifierName][member || NO_MEMBER] = options;
}
});
path.traverse(replaceVisitor, {
replacements: map
});
}
}
};
};

51
node_modules/babel-plugin-minify-replace/package.json generated vendored Normal file
View File

@@ -0,0 +1,51 @@
{
"_args": [
[
"babel-plugin-minify-replace@0.5.0",
"/home/runner/work/add-and-commit/add-and-commit"
]
],
"_development": true,
"_from": "babel-plugin-minify-replace@0.5.0",
"_id": "babel-plugin-minify-replace@0.5.0",
"_inBundle": false,
"_integrity": "sha512-aXZiaqWDNUbyNNNpWs/8NyST+oU7QTpK7J9zFEFSA0eOmtUNMU3fczlTTTlnCxHmq/jYNFEmkkSG3DDBtW3Y4Q==",
"_location": "/babel-plugin-minify-replace",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "babel-plugin-minify-replace@0.5.0",
"name": "babel-plugin-minify-replace",
"escapedName": "babel-plugin-minify-replace",
"rawSpec": "0.5.0",
"saveSpec": null,
"fetchSpec": "0.5.0"
},
"_requiredBy": [
"/babel-preset-minify"
],
"_resolved": "https://registry.npmjs.org/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.5.0.tgz",
"_spec": "0.5.0",
"_where": "/home/runner/work/add-and-commit/add-and-commit",
"author": {
"name": "amasad"
},
"bugs": {
"url": "https://github.com/babel/minify/issues"
},
"description": "Configurable \"search and replace\" plugin. Replaces matching nodes in the tree with a given replacement node. For example you can replace `process.NODE_ENV` with `\"production\"`.",
"gitHead": "4de390008da4a486b37819109d2021a0957ad405",
"homepage": "https://github.com/babel/minify#readme",
"keywords": [
"babel-plugin"
],
"license": "MIT",
"main": "lib/index.js",
"name": "babel-plugin-minify-replace",
"repository": {
"type": "git",
"url": "https://github.com/babel/minify/tree/master/packages/babel-plugin-minify-replace"
},
"version": "0.5.0"
}