mirror of
https://github.com/ClaytonWWilson/stokpile.git
synced 2025-12-13 08:38:49 +00:00
Rebrand to Stokpile
This commit is contained in:
parent
8e1e988cea
commit
0ec1d91678
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,11 +1,11 @@
|
||||
{
|
||||
"name": "lognautica",
|
||||
"name": "stokpile",
|
||||
"version": "0.0.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "lognautica",
|
||||
"name": "stokpile",
|
||||
"version": "0.0.1",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "lognautica",
|
||||
"name": "stokpile",
|
||||
"version": "0.0.1",
|
||||
"description": "Lightweight javascript logger with tampermonkey storage support",
|
||||
"main": "Logger.ts",
|
||||
@ -23,7 +23,7 @@
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ClaytonWWilson/lognautica.git"
|
||||
"url": "git+https://github.com/ClaytonWWilson/stokpile.git"
|
||||
},
|
||||
"keywords": [
|
||||
"log",
|
||||
@ -33,9 +33,9 @@
|
||||
"author": "Clayton Wilson",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ClaytonWWilson/lognautica/issues"
|
||||
"url": "https://github.com/ClaytonWWilson/stokpile/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ClaytonWWilson/lognautica#readme",
|
||||
"homepage": "https://github.com/ClaytonWWilson/stokpile#readme",
|
||||
"dependencies": {
|
||||
"@rollup/plugin-node-resolve": "^15.2.3",
|
||||
"zod": "^3.22.4"
|
||||
|
||||
@ -9,8 +9,8 @@ const productionBuildMinified = {
|
||||
output: {
|
||||
sourcemap: false,
|
||||
format: "es",
|
||||
name: "lognautica",
|
||||
file: "dist/lognautica.min.js",
|
||||
name: "stokpile",
|
||||
file: "dist/stokpile.min.js",
|
||||
},
|
||||
plugins: [
|
||||
nodeResolve({ preferBuiltins: true }),
|
||||
@ -33,8 +33,8 @@ const productionBuild = {
|
||||
output: {
|
||||
sourcemap: false,
|
||||
format: "es",
|
||||
name: "lognautica",
|
||||
file: "dist/lognautica.js",
|
||||
name: "stokpile",
|
||||
file: "dist/stokpile.js",
|
||||
},
|
||||
plugins: [
|
||||
nodeResolve({ preferBuiltins: true }),
|
||||
@ -55,8 +55,8 @@ const devBuild = {
|
||||
output: {
|
||||
sourcemap: true,
|
||||
format: "es",
|
||||
name: "lognautica",
|
||||
file: "dist/lognautica.dev.js",
|
||||
name: "stokpile",
|
||||
file: "dist/stokpile.dev.js",
|
||||
},
|
||||
plugins: [
|
||||
nodeResolve({ preferBuiltins: true }),
|
||||
|
||||
5
tests/outputs/tampermonkey.spec.ts
Normal file
5
tests/outputs/tampermonkey.spec.ts
Normal file
@ -0,0 +1,5 @@
|
||||
import { expect, test } from "@playwright/test";
|
||||
import { Logger } from "../../src/Logger";
|
||||
import Tampermonkey from "../../src/outputs/Tampermonkey";
|
||||
|
||||
test("Constructors", () => {});
|
||||
Loading…
Reference in New Issue
Block a user