rename folder

This commit is contained in:
KernelDeimos 2024-08-29 22:24:55 -04:00
parent cf24c3dd2a
commit a4e9c7bdd7
22 changed files with 15 additions and 9 deletions

8
package-lock.json generated
View File

@ -2606,7 +2606,7 @@
"link": true
},
"node_modules/@heyputer/putility": {
"resolved": "src/putility",
"resolved": "src/putil",
"link": true
},
"node_modules/@heyputer/terminal": {
@ -16911,9 +16911,15 @@
"version": "1.0.0",
"license": "AGPL-3.0-only"
},
"src/putil": {
"name": "@heyputer/putility",
"version": "1.0.0",
"license": "AGPL-3.0-only"
},
"src/putility": {
"name": "@heyputer/putility",
"version": "1.0.0",
"extraneous": true,
"license": "AGPL-3.0-only"
},
"src/strataparse": {

View File

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
const { AdvancedBase } = require("@heyputer/putility");
const { AdvancedBase } = require("../../../putility");
const NOOP = async () => {};

View File

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
const { AdvancedBase } = require("@heyputer/putility");
const { AdvancedBase } = require("../../../putility");
const { Context } = require("../util/context");
const { ContextAwareFeature } = require("../traits/ContextAwareFeature");
const { OtelFeature } = require("../traits/OtelFeature");

View File

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
const { AdvancedBase } = require("@heyputer/putility");
const { AdvancedBase } = require("../../../../putility");
const { Context } = require("../../util/context");
const { get_user, get_app } = require("../../helpers");
const config = require("../../config");

View File

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
const { AdvancedBase } = require("@heyputer/putility");
const { AdvancedBase } = require("../../../../putility");
const BaseService = require("../BaseService");
const { DB_WRITE, DB_READ } = require("./consts");

View File

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
const { AdvancedBase } = require("@heyputer/putility");
const { AdvancedBase } = require("../../../../putility");
const { Context } = require("../../util/context");
const { MultiValue } = require("../../util/multivalue");
const { stream_to_buffer } = require("../../util/streamutil");

View File

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
const { AdvancedBase } = require("@heyputer/putility");
const { AdvancedBase } = require("../../../../putility");
const { is_valid_path } = require("../../filesystem/validation");
const { is_valid_url, is_valid_uuid4 } = require("../../helpers");
const { FileFacade } = require("./FileFacade");

View File

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
const { AdvancedBase } = require("@heyputer/putility");
const { AdvancedBase } = require("../../../putility");
/**
* MutliValue represents a subject with multiple values or a value with multiple

View File

@ -16,7 +16,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
const { AdvancedBase } = require("@heyputer/putility");
const { AdvancedBase } = require("../../../putility");
/**
* PathBuilder implements the builder pattern for building paths.