Skip to content

Commit

Permalink
chore(gh-bot): 🚀 build types, api & library files
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 29, 2023
1 parent 89f366d commit 1f3bca0
Show file tree
Hide file tree
Showing 9 changed files with 632 additions and 632 deletions.
8 changes: 1 addition & 7 deletions lib/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,4 @@ exports.postcss = postcss;
exports.springEasingPlugin = springEasingPlugin;
exports.toCamel = toCamel;
exports.toSnake = toSnake;
Object.keys(springEasing).forEach((k) => {
if (k !== "default" && !exports.hasOwnProperty(k))
Object.defineProperty(exports, k, {
enumerable: true,
get: () => springEasing[k]
});
});
//# sourceMappingURL=index.cjs.map
1 change: 1 addition & 0 deletions lib/index.cjs.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion lib/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import type { TypeCSSEasingOptions, TypeFrameFunction } from 'spring-easing';
import type { PluginCreator } from 'postcss';
export * from 'spring-easing';
export declare function toSnake(str: string): string;
export declare function toCamel(str: string): string;
export type PluginOpts = Omit<TypeCSSEasingOptions, "easing"> & {
Expand Down
2 changes: 1 addition & 1 deletion lib/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 1 addition & 7 deletions lib/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/index.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import parser from "postcss-value-parser";
import { EasingFunctionKeys, EasingFunctions, registerEasingFunctions, CSSSpringEasing, toFixed } from "spring-easing";
export * from "spring-easing";
function toSnake(str) {
return str[0] + str.slice(1).replace(/[A-Z]/g, (letter) => {
return "-" + letter.toLowerCase();
Expand Down Expand Up @@ -69,3 +68,4 @@ export {
toCamel,
toSnake
};
//# sourceMappingURL=index.mjs.map
1 change: 1 addition & 0 deletions lib/index.mjs.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1f3bca0

Please sign in to comment.