1
0
Fork 0
mirror of synced 2024-10-02 10:08:09 +13:00

Move manifest.json

This commit is contained in:
Adria Navarro 2024-03-14 17:50:17 +01:00
parent 2407ddbcfb
commit 81f2fb5aa9
5 changed files with 4 additions and 5 deletions

View file

@ -16,8 +16,7 @@
},
"files": [
"dist",
"src",
"manifest.json"
"src"
],
"scripts": {
"build": "rollup -c",

View file

@ -22,7 +22,7 @@ const COLLECTIONS = [
"object",
"uuid",
]
const FILENAME = join(__dirname, "..", "manifest.json")
const FILENAME = join(__dirname, "..", "src", "manifest.json")
const outputJSON = {}
const ADDED_HELPERS = {
date: {

View file

@ -14,7 +14,7 @@ import { convertHBSBlock } from "./conversion"
import { setJSRunner, removeJSRunner } from "./helpers/javascript"
import { helpersToRemoveForJs } from "./helpers/list"
import manifest from "../manifest.json"
import manifest from "./manifest.json"
import { ProcessOptions } from "./types"
export { setJSRunner, setOnErrorLog } from "./helpers/javascript"

View file

@ -1,7 +1,7 @@
{
"include": ["src/**/*"],
"compilerOptions": {
"rootDir": ".",
"declaration": true,
"target": "es6",
"moduleResolution": "node",
"lib": ["dom"],