nanoplot 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +30 -32
- package/.prettierrc +0 -16
- package/happydom.ts +0 -3
- package/next-env.d.ts +0 -5
- package/next.config.js +0 -16
- package/postcss.config.mjs +0 -8
- package/tailwind.config.ts +0 -18
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const placeholder = "
|
|
1
|
+
const placeholder = "placehlode2r";
|
package/package.json
CHANGED
|
@@ -1,32 +1,30 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "nanoplot",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"private": false,
|
|
5
|
-
"types": "dist/export/index.d.ts",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"dev": "next dev",
|
|
9
|
-
"build": "next build",
|
|
10
|
-
"start": "next start",
|
|
11
|
-
"test": "bun test --watch"
|
|
12
|
-
},
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"react
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
"@
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
32
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "nanoplot",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"private": false,
|
|
5
|
+
"types": "dist/export/index.d.ts",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"dev": "next dev",
|
|
9
|
+
"build": "next build",
|
|
10
|
+
"start": "next start",
|
|
11
|
+
"test": "bun test --watch"
|
|
12
|
+
},
|
|
13
|
+
"devDependencies": {
|
|
14
|
+
"@happy-dom/global-registrator": "^15.11.6",
|
|
15
|
+
"@testing-library/dom": "^10.4.0",
|
|
16
|
+
"@testing-library/react": "^16.0.1",
|
|
17
|
+
"@types/node": "^20",
|
|
18
|
+
"@types/react": "^18",
|
|
19
|
+
"@types/react-dom": "^18",
|
|
20
|
+
"bun-types": "^1.1.36",
|
|
21
|
+
"next": "15.0.3",
|
|
22
|
+
"postcss": "^8",
|
|
23
|
+
"prettier": "^3.3.3",
|
|
24
|
+
"react": "19.0.0-rc-66855b96-20241106",
|
|
25
|
+
"react-dom": "19.0.0-rc-66855b96-20241106",
|
|
26
|
+
"sass": "^1.80.6",
|
|
27
|
+
"tailwindcss": "^3.4.1",
|
|
28
|
+
"typescript": "^5"
|
|
29
|
+
}
|
|
30
|
+
}
|
package/.prettierrc
DELETED
package/happydom.ts
DELETED
package/next-env.d.ts
DELETED
package/next.config.js
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
webpack: (config) => {
|
|
3
|
-
// camelCase style names from css modules
|
|
4
|
-
config.module.rules
|
|
5
|
-
.find(({ oneOf }) => !!oneOf)
|
|
6
|
-
.oneOf.filter(({ use }) => JSON.stringify(use)?.includes("css-loader"))
|
|
7
|
-
.reduce((acc, { use }) => acc.concat(use), [])
|
|
8
|
-
.forEach(({ options }) => {
|
|
9
|
-
if (options.modules) {
|
|
10
|
-
options.modules.exportLocalsConvention = "camelCaseOnly";
|
|
11
|
-
}
|
|
12
|
-
});
|
|
13
|
-
|
|
14
|
-
return config;
|
|
15
|
-
},
|
|
16
|
-
};
|
package/postcss.config.mjs
DELETED
package/tailwind.config.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import type { Config } from "tailwindcss";
|
|
2
|
-
|
|
3
|
-
export default {
|
|
4
|
-
content: [
|
|
5
|
-
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
6
|
-
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
7
|
-
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
8
|
-
],
|
|
9
|
-
theme: {
|
|
10
|
-
extend: {
|
|
11
|
-
colors: {
|
|
12
|
-
background: "var(--background)",
|
|
13
|
-
foreground: "var(--foreground)",
|
|
14
|
-
},
|
|
15
|
-
},
|
|
16
|
-
},
|
|
17
|
-
plugins: [],
|
|
18
|
-
} satisfies Config;
|