mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-05-09 12:36:07 +02:00
chore: fix template
This commit is contained in:
@@ -1 +0,0 @@
|
||||
../../../shared/tsconfig.json
|
||||
@@ -6,13 +6,13 @@
|
||||
"Tauri Programme within The Commons Conservancy"
|
||||
],
|
||||
"type": "module",
|
||||
"browser": "dist/index.min.js",
|
||||
"module": "dist/index.mjs",
|
||||
"types": "dist/index.d.ts",
|
||||
"browser": "guest-js/dist/index.min.js",
|
||||
"module": "guest-js/dist/index.mjs",
|
||||
"types": "guest-js/dist/index.d.ts",
|
||||
"exports": {
|
||||
"import": "./dist/index.mjs",
|
||||
"types": "./dist/index.d.ts",
|
||||
"browser": "./dist/index.min.js"
|
||||
"import": "./guest-js/dist/index.mjs",
|
||||
"types": "./guest-js/dist/index.d.ts",
|
||||
"browser": "./guest-js/dist/index.min.js"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rollup -c"
|
||||
@@ -1,8 +1,9 @@
|
||||
import { readFileSync } from "fs";
|
||||
|
||||
import { createConfig } from "../../../shared/rollup.config.mjs";
|
||||
import { createConfig } from "../rollup.config.mjs";
|
||||
|
||||
export default createConfig({
|
||||
input: 'guest-js/index.ts',
|
||||
pkg: JSON.parse(
|
||||
readFileSync(new URL("./package.json", import.meta.url), "utf8")
|
||||
),
|
||||
Symlink
+1
@@ -0,0 +1 @@
|
||||
../tsconfig.json
|
||||
Reference in New Issue
Block a user