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 CHANGED
@@ -1,10 +1,10 @@
1
1
  # Funkophile
2
2
 
3
- The _func_ tional _file_ processor.
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
@@ -62,6 +62,7 @@ export default (funkophileConfig) => {
62
62
  type: UPSERT,
63
63
  payload: {
64
64
  key: key,
65
+ // key: path.relative(process.cwd(), key),
65
66
  src: file,
66
67
  contents: fse.readFileSync(file, encoding),
67
68
  },
package/index.ts CHANGED
@@ -101,7 +101,8 @@ export default (funkophileConfig: {
101
101
  store.dispatch({
102
102
  type: UPSERT,
103
103
  payload: {
104
- key: key,
104
+ key: key,
105
+ // key: path.relative(process.cwd(), key),
105
106
  src: file,
106
107
  contents: fse.readFileSync(file, encoding),
107
108
  },
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "funkophile",
3
- "version": "0.0.26",
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"