build
This commit is contained in:
parent
3c7926df4d
commit
17aee620b3
4 changed files with 11 additions and 1 deletions
|
|
@ -1,3 +1,6 @@
|
|||
"use strict";
|
||||
var import_cacheMemoria = require("./cacheMemoria");
|
||||
var import_texto_busca = require("./texto_busca");
|
||||
console.log("Vari\xE1veis funcionando", import_texto_busca.texto_busca);
|
||||
(0, import_cacheMemoria.cacheM)(1, { Jaca: Promise.resolve() });
|
||||
console.log("cache:", (0, import_cacheMemoria.cacheM)(1));
|
||||
|
|
|
|||
|
|
@ -1,2 +1,5 @@
|
|||
import { cacheM } from "./cacheMemoria";
|
||||
import { texto_busca } from "./texto_busca";
|
||||
console.log("Vari\xE1veis funcionando", texto_busca);
|
||||
cacheM(1, { Jaca: Promise.resolve() });
|
||||
console.log("cache:", cacheM(1));
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "p-comuns",
|
||||
"version": "0.157.0",
|
||||
"version": "0.158.0",
|
||||
"description": "",
|
||||
"main": "./src/index.ts",
|
||||
"exports": {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,8 @@
|
|||
import { cacheM } from "./cacheMemoria"
|
||||
import { texto_busca } from "./texto_busca"
|
||||
|
||||
// node dist-back/teste.mjs
|
||||
console.log("Variáveis funcionando", texto_busca)
|
||||
|
||||
cacheM(1, { Jaca: Promise.resolve() })
|
||||
console.log("cache:", cacheM(1))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue