Initial commit

This commit is contained in:
Spencer Pincott
2024-07-15 22:20:13 -04:00
commit 97737ca1ae
16618 changed files with 934131 additions and 0 deletions

48
themes/keepit/node_modules/preval.macro/README.md generated vendored Normal file
View File

@@ -0,0 +1,48 @@
<p align="center">
<a href="https://codefund.io/properties/513/visit-sponsor">
<img src="https://codefund.io/properties/513/sponsor" />
</a>
</p>
# preval.macro
This is a [`babel-plugin-macros`][babel-plugin-macros] macro for
[`babel-plugin-preval`][babel-plugin-preval].
Please see those projects for more information.
## Installation
This module is distributed via [npm][npm] which is bundled with [node][node] and
should be installed as one of your project's `devDependencies`:
```
npm install --save-dev preval.macro
```
You'll also need to install and configure
[`babel-plugin-macros`][babel-plugin-macros] if you haven't already.
## Usage
Once you've
[configured `babel-plugin-macros`](https://github.com/kentcdodds/babel-plugin-macros/blob/master/other/docs/user.md)
you can import/require `preval.macro`. For example:
```js
import preval from 'preval.macro'
const one = preval`module.exports = 1 + 2 - 1 - 1`
```
**Note**:
[`babel-plugin-preval`][babel-plugin-preval] allows you to have a few more APIs
than you have with this macro, but this macro comes with all the benefits of
using [`babel-plugin-macros`][babel-plugin-macros] (which you can read about in
the `babel-plugin-macros` docs).
[npm]: https://www.npmjs.com/
[node]: https://nodejs.org
[babel-plugin-macros]: https://github.com/kentcdodds/babel-plugin-macros
[babel-plugin-preval]: https://github.com/kentcdodds/babel-plugin-preval

4
themes/keepit/node_modules/preval.macro/index.js generated vendored Normal file
View File

@@ -0,0 +1,4 @@
// the entire point of this package is to make it easier to use
// babel-plugin-preval/macro
module.exports = require('babel-plugin-preval/macro')

15
themes/keepit/node_modules/preval.macro/package.json generated vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "preval.macro",
"version": "4.0.0",
"description": "Pre-evaluate code at build-time with babel-macros",
"main": "index.js",
"keywords": [
"babel-macros",
"babel-plugin-macros"
],
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"babel-plugin-preval": "^4.0.0"
}
}