funkophile 0.0.26 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/esm/index.js +1 -0
- package/index.ts +2 -1
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Funkophile
|
|
2
2
|
|
|
3
|
-
The
|
|
3
|
+
The _func_tional _file_ processor.
|
|
4
4
|
|
|
5
5
|
#### *What* is Funkophile?
|
|
6
6
|
|
|
7
|
-
Funkophile is a build tool that inputs files, processes them, and then outputs them. Optionally, it can watch those files for changes, and updating the output files very efficiently. No plugins are needed because what once was configuration is now code- EVERYTHING is done in redux selectors.
|
|
7
|
+
Funkophile is a very small build tool that inputs files, processes them, and then outputs them. Optionally, it can watch those files for changes, and updating the output files very efficiently. No plugins are needed because what once was configuration is now code- EVERYTHING is done in redux selectors.
|
|
8
8
|
|
|
9
9
|
#### What is Funkophile *not*?
|
|
10
10
|
|
package/dist/esm/index.js
CHANGED
package/index.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "funkophile",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"repository": "git@github.com:adamwong246/funkophile.git",
|
|
5
5
|
"author": "adam wong <adamwong246@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"homepage": "https://github.com/adamwong246/funkophile",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"static site generator"
|
|
10
|
+
],
|
|
7
11
|
"type": "module",
|
|
8
12
|
"main": "./dist/esm.index.js",
|
|
9
13
|
"types": "./dist/esm/index.d.ts",
|
|
@@ -18,6 +22,7 @@
|
|
|
18
22
|
"@types/redux": "^3.6.0",
|
|
19
23
|
"@types/reselect": "^2.2.0",
|
|
20
24
|
"bluebird": "3.7.2",
|
|
25
|
+
"fs-extra": "^11.3.0",
|
|
21
26
|
"glob": "11.0.1",
|
|
22
27
|
"tsc": "^2.0.4",
|
|
23
28
|
"typescript": "^5.8.2"
|