Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: triggers #8

Merged
merged 3 commits into from
Jul 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages

name: Node.js Package
name: Main

on:
push:
paths-ignore:
- "README.md"
- "CHANGELOG.md"
pull_request:
types:
- closed
- "LICENSE"
- ".gitignore"
- ".vscode"
workflow_dispatch:

jobs:
test:
Expand Down
1 change: 0 additions & 1 deletion lib/cjs/helpers/general.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@ export interface Path {
export declare function path<Subpaths extends Record<string, Path>>(_: string, subpaths?: Subpaths): Path & Subpaths;
export declare function snakeCaseToCamelCase(obj: Record<string, any>): void;
export declare function camelCaseToSnakeCase(obj: Record<string, any>): void;
export declare function hello(name: string): string;
6 changes: 1 addition & 5 deletions lib/cjs/helpers/general.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var __assign = (this && this.__assign) || function () {
return __assign.apply(this, arguments);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.hello = exports.camelCaseToSnakeCase = exports.snakeCaseToCamelCase = exports.path = exports.wrap = exports.openInNewTab = void 0;
exports.camelCaseToSnakeCase = exports.snakeCaseToCamelCase = exports.path = exports.wrap = exports.openInNewTab = void 0;
function openInNewTab(url, target) {
if (target === void 0) { target = '_blank'; }
window.open(url, target);
Expand Down Expand Up @@ -88,7 +88,3 @@ function camelCaseToSnakeCase(obj) {
});
}
exports.camelCaseToSnakeCase = camelCaseToSnakeCase;
function hello(name) {
return "Hello, ".concat(name);
}
exports.hello = hello;
1 change: 0 additions & 1 deletion lib/esm/helpers/general.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@ export interface Path {
export declare function path<Subpaths extends Record<string, Path>>(_: string, subpaths?: Subpaths): Path & Subpaths;
export declare function snakeCaseToCamelCase(obj: Record<string, any>): void;
export declare function camelCaseToSnakeCase(obj: Record<string, any>): void;
export declare function hello(name: string): string;
3 changes: 0 additions & 3 deletions lib/esm/helpers/general.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,3 @@ export function camelCaseToSnakeCase(obj) {
obj[snakeKey] = value;
});
}
export function hello(name) {
return "Hello, ".concat(name);
}
4 changes: 0 additions & 4 deletions src/helpers/general.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,3 @@ export function camelCaseToSnakeCase(obj: Record<string, any>): void {
obj[snakeKey] = value;
});
}

export function hello(name: string): string {
return `Hello, ${name}`;
}