@gandalan/weblibs 1.3.12 → 1.5.1

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/README.md CHANGED
@@ -1,7 +1,9 @@
1
- # WebLibs for Gandalan JS/TS/Svelte projects
1
+ # WebLibs for Gandalan JS/TS projects
2
2
 
3
3
  ## Initialize Fluent IDAS API + local API
4
+
4
5
  Example:
6
+
5
7
  ```js
6
8
  import { fetchEnvConfig, fluentApi, fluentIdasAuthManager } from '@gandalan/weblibs';
7
9
 
package/eslint.config.js CHANGED
@@ -1,13 +1,10 @@
1
1
  import globals from "globals";
2
2
  import babelParser from "@babel/eslint-parser";
3
3
  import js from "@eslint/js";
4
- import svelteParser from "svelte-eslint-parser";
5
- import eslintPluginSvelte from "eslint-plugin-svelte";
6
4
 
7
5
  export default [
8
6
  // add more generic rule sets here, such as:
9
7
  js.configs.recommended,
10
- ...eslintPluginSvelte.configs["flat/recommended"],
11
8
  {
12
9
  ignores: [
13
10
  "**/.DS_Store",
@@ -23,12 +20,6 @@ export default [
23
20
  "**/yarn.lock",
24
21
  ],
25
22
  },
26
- {
27
- files: ["**/*.svelte", "*.svelte"],
28
- languageOptions: {
29
- parser: svelteParser,
30
- },
31
- },
32
23
  {
33
24
  languageOptions: {
34
25
  globals: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gandalan/weblibs",
3
- "version": "1.3.12",
4
- "description": "WebLibs for Gandalan JS/TS/Svelte projects",
3
+ "version": "1.5.1",
4
+ "description": "WebLibs for Gandalan JS/TS projects",
5
5
  "keywords": [
6
6
  "gandalan"
7
7
  ],
@@ -15,8 +15,6 @@
15
15
  "typings": "index",
16
16
  "type": "module",
17
17
  "scripts": {
18
- "svelte-check": "svelte-check",
19
- "svelte-check:watch": "svelte-check --watch",
20
18
  "lint": "eslint .",
21
19
  "lint:prod": "eslint .",
22
20
  "lint:fix": "eslint . --fix"
@@ -28,14 +26,11 @@
28
26
  "validator": "^13.12.0"
29
27
  },
30
28
  "devDependencies": {
31
- "@babel/core": "^7.26.0",
29
+ "@babel/core": "^7.26.7",
32
30
  "@babel/eslint-parser": "^7.26.5",
33
- "@eslint/js": "^9.18.0",
34
- "eslint": "^9.18.0",
35
- "eslint-plugin-svelte": "^2.46.1",
36
- "globals": "^15.14.0",
37
- "svelte": "^4.2.19",
38
- "svelte-check": "^3.8.6"
31
+ "@eslint/js": "^9.19.0",
32
+ "eslint": "^9.19.0",
33
+ "globals": "^15.14.0"
39
34
  },
40
35
  "publishConfig": {
41
36
  "access": "public"
@@ -1,13 +0,0 @@
1
- import AddButton from "./AddButton.svelte";
2
- import DataGrid from "./DataGrid.svelte";
3
- import Dialog from "./Dialog.svelte";
4
- import GanTable from "./GanTable.svelte";
5
- import Datepicker from "./Datepicker.svelte";
6
- import Inputbox from "./Inputbox.svelte";
7
- import RemoveButton from "./RemoveButton.svelte";
8
- import SaveButton from "./SaveButton.svelte";
9
-
10
- export {
11
- DataGrid, Datepicker, Inputbox, Dialog, GanTable,
12
- AddButton, RemoveButton, SaveButton,
13
- }