Skip to content

Commit dc18a3c

Browse files
committed
Deploy Production Code for Commit 9716147 🚀
1 parent 9716147 commit dc18a3c

File tree

380 files changed

+144216
-137052
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

380 files changed

+144216
-137052
lines changed

lib/constants.js

+17-7
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
1515
}) : function(o, v) {
1616
o["default"] = v;
1717
});
18-
var __importStar = (this && this.__importStar) || function (mod) {
19-
if (mod && mod.__esModule) return mod;
20-
var result = {};
21-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22-
__setModuleDefault(result, mod);
23-
return result;
24-
};
18+
var __importStar = (this && this.__importStar) || (function () {
19+
var ownKeys = function(o) {
20+
ownKeys = Object.getOwnPropertyNames || function (o) {
21+
var ar = [];
22+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23+
return ar;
24+
};
25+
return ownKeys(o);
26+
};
27+
return function (mod) {
28+
if (mod && mod.__esModule) return mod;
29+
var result = {};
30+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31+
__setModuleDefault(result, mod);
32+
return result;
33+
};
34+
})();
2535
Object.defineProperty(exports, "__esModule", { value: true });
2636
exports.DefaultExcludedFiles = exports.SupportedOperatingSystems = exports.OperatingSystems = exports.Status = exports.action = exports.TestFlag = void 0;
2737
const core_1 = require("@actions/core");

lib/git.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function deploy(action) {
114114
Pushes all of the build files into the deployment directory.
115115
Allows the user to specify the root if '.' is provided.
116116
rsync is used to prevent file duplication. */
117-
yield (0, execute_1.execute)(`rsync -q -av --checksum --progress ${action.folderPath}/. ${action.targetFolder
117+
yield (0, execute_1.execute)(`rsync -q -av --checksum --progress ${action.targetFolder ? '--mkpath' : ''} ${action.folderPath}/. ${action.targetFolder
118118
? `${temporaryDeploymentDirectory}/${action.targetFolder}`
119119
: temporaryDeploymentDirectory} ${action.clean
120120
? `--delete ${excludes} ${!fs_1.default.existsSync(`${action.folderPath}/${constants_1.DefaultExcludedFiles.CNAME}`)

node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js

+17-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-return.js

+17-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-return.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js

+17-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)