@indra.ai/deva.veda 0.0.16 → 0.0.17
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/help/laws/manu.03.feecting +2 -1
- package/index.js +6 -6
- package/package.json +2 -2
|
@@ -88,7 +88,8 @@ law[67f1c7472ecedc5226ed33f9]: Whatever may please the Brahmanas, let him give w
|
|
|
88
88
|
|
|
89
89
|
law[67f1c7512ecedc5226ed33fa]: To a Brahmana (householder), or to an ascetic who comes for food, he may, with the permission of (his) Brahmana (guests), show honour according to his ability.
|
|
90
90
|
|
|
91
|
-
The Brahmana (guests) shall then answer him, 'Let there be Svadha;' for at all rites in honour of the manes the word Svadha is the highest benison.
|
|
91
|
+
law[67f1c9ce7f8bd6d02abd0a45]: The Brahmana (guests) shall then answer him, 'Let there be Svadha;' for at all rites in honour of the manes the word Svadha is the highest benison.
|
|
92
|
+
|
|
92
93
|
::begin:hidden
|
|
93
94
|
#color = {{profile.color}}
|
|
94
95
|
#bgcolor = {{profile.bgcolor}}
|
package/index.js
CHANGED
|
@@ -104,7 +104,7 @@ const VEDA = new Deva({
|
|
|
104
104
|
|
|
105
105
|
const {id, title, describe, DATA} = theJSON;
|
|
106
106
|
|
|
107
|
-
this.
|
|
107
|
+
this.state('set', `book data`);
|
|
108
108
|
const _text = [
|
|
109
109
|
`::BEGIN:BOOK:${id}`,
|
|
110
110
|
`## ${title}`,
|
|
@@ -126,7 +126,7 @@ const VEDA = new Deva({
|
|
|
126
126
|
_text.push(`::end:hidden`);
|
|
127
127
|
_text.push(`::END:BOOK:${_hymnsHash}`);
|
|
128
128
|
|
|
129
|
-
this.
|
|
129
|
+
this.state('resolve', `book ${text}`)
|
|
130
130
|
return resolve({
|
|
131
131
|
id,
|
|
132
132
|
title,
|
|
@@ -137,7 +137,7 @@ const VEDA = new Deva({
|
|
|
137
137
|
created: Date.now(),
|
|
138
138
|
});
|
|
139
139
|
} catch (e) {
|
|
140
|
-
this.
|
|
140
|
+
this.state('reject', `book ${text}`)
|
|
141
141
|
return reject(e);
|
|
142
142
|
}
|
|
143
143
|
});
|
|
@@ -164,7 +164,7 @@ const VEDA = new Deva({
|
|
|
164
164
|
const _hymn = JSON.parse(theFile);
|
|
165
165
|
const processed = this.utils.process({key:_hymn.key,title:_hymn.title,content:_hymn.orig});
|
|
166
166
|
|
|
167
|
-
this.
|
|
167
|
+
this.state('set', `hymn ${h}`)
|
|
168
168
|
const hymn = [
|
|
169
169
|
`::BEGIN:HYMN:${processed.key}`,
|
|
170
170
|
`# ${processed.title}`,
|
|
@@ -190,7 +190,7 @@ const VEDA = new Deva({
|
|
|
190
190
|
`::END:HYMN:${this.lib.hash(processed)}`,
|
|
191
191
|
];
|
|
192
192
|
|
|
193
|
-
this.
|
|
193
|
+
this.state('resolve', `hymn ${h}`)
|
|
194
194
|
return resolve({
|
|
195
195
|
id,
|
|
196
196
|
key: processed.key,
|
|
@@ -201,7 +201,7 @@ const VEDA = new Deva({
|
|
|
201
201
|
created: Date.now(),
|
|
202
202
|
});
|
|
203
203
|
} catch (e) {
|
|
204
|
-
this.
|
|
204
|
+
this.state('reject', `hymn ${h}`)
|
|
205
205
|
return reject(e);
|
|
206
206
|
}
|
|
207
207
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": 6642777683539,
|
|
3
3
|
"name": "@indra.ai/deva.veda",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.17",
|
|
5
5
|
"author": "Quinn Michaels",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"copyright": "2025",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://deva.space/devas/veda",
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@indra.ai/deva": "^1.4.
|
|
31
|
+
"@indra.ai/deva": "^1.4.23"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"he": "^1.2.0"
|