meeting-pane 2.5.1-b5aaef32 → 2.5.1-fa7f4e11

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/package.json CHANGED
@@ -1,28 +1,25 @@
1
1
  {
2
2
  "name": "meeting-pane",
3
- "version": "2.5.1-b5aaef32",
3
+ "version": "2.5.1-fa7f4e11",
4
4
  "description": "Solid-compatible Panes: meeting collaborative tool",
5
- "main": "./lib/meetingPane.js",
5
+ "main": "dist/meetingPane.js",
6
6
  "files": [
7
- "src",
8
- "lib"
7
+ "dist/",
8
+ "README.md",
9
+ "LICENSE"
9
10
  ],
10
11
  "scripts": {
11
- "build": "npm run clean && npm run build-lib && webpack",
12
- "build-browserified": "npm run build",
13
- "build-dist": "webpack --progress --color --mode=production",
14
- "build-dev": "webpack --progress --color --mode=development",
15
- "build-lib": "babel src -d lib --source-maps --extensions '.ts,.js'",
16
- "build-types": "npm run build-version && tsc --declaration --emitDeclarationOnly",
17
- "build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix",
18
- "lint": "eslint '*.js'",
19
- "lint-fix": "eslint '*.js' --fix",
20
- "clean": "rm -rf lib && rm -rf dist",
21
- "test": "npm run lint",
22
- "ignore:prepublishOnly": "npm test && npm run build",
23
- "ignore:postpublish": "git push origin main --follow-tags",
12
+ "clean": "rm -rf dist",
13
+ "build": "npm run clean && npm run build-dist",
14
+ "build-dist": "webpack --progress",
15
+ "lint": "eslint",
16
+ "lint-fix": "eslint --fix",
17
+ "test": "echo \"No tests specified\" && exit 0",
18
+ "ignore:prepublishOnly": "npm run build && npm run lint",
19
+ "preversion": "npm run lint",
20
+ "postversion": "git push origin main --follow-tags",
24
21
  "watch": "webpack --watch",
25
- "start": "webpack serve --open"
22
+ "start": "webpack serve --config webpack.dev.config.js --open"
26
23
  },
27
24
  "repository": {
28
25
  "type": "git",
@@ -50,19 +47,17 @@
50
47
  "solid-ui": "^2.6.1"
51
48
  },
52
49
  "devDependencies": {
53
- "@babel/cli": "^7.28.0",
54
- "@babel/core": "^7.28.0",
55
50
  "@babel/preset-env": "^7.28.0",
56
- "@webpack-cli/serve": "^3.0.1",
51
+ "babel-loader": "^10.0.0",
57
52
  "buffer": "^6.0.3",
58
53
  "eslint": "^9.33.0",
59
54
  "globals": "^16.3.0",
60
55
  "html-webpack-plugin": "^5.6.3",
61
56
  "husky": "^9.1.7",
62
57
  "lint-staged": "^16.2.0",
58
+ "neostandard": "^0.12.2",
63
59
  "node-polyfill-webpack-plugin": "^4.1.0",
64
60
  "typescript": "^5.9.2",
65
- "webpack": "^5.101.0",
66
61
  "webpack-cli": "^6.0.1",
67
62
  "webpack-dev-server": "^5.2.2"
68
63
  },
@@ -1,4 +0,0 @@
1
- "use strict";
2
-
3
- module.exports = "@prefix : <http://www.w3.org/ns/ui#> .\n@prefix f: <#> .\n@prefix dc: <http://purl.org/dc/elements/1.1/>.\n@prefix cal: <http://www.w3.org/2002/12/cal/ical#>.\n@prefix meeting: <http://www.w3.org/ns/pim/meeting#>.\n@prefix ns: <http://www.w3.org/2006/vcard/ns#> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.\n@prefix te: <http://purl.org/dc/terms/> .\n@prefix dc: <http://purl.org/dc/elements/1.1/>.\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.\n@prefix ui: <http://www.w3.org/ns/ui#>.\n\n f:main a :Form;\n cal:summary \"Meeting Details\";\n :part f:titleField, f:locationField, f:startField,\n f:endField, f:eventComment, f:colorField .\n\n f:titleField a :SingleLineTextField;\n :maxLength 256;\n :property cal:summary;\n :label \"Name of meeting\";\n :size 80 .\n\n f:locationField a :SingleLineTextField;\n :maxLength 128;\n :property cal:location;\n :size 40 .\n\n f:startField a :DateField;\n :label \"Start\";\n :property cal:dtstart .\n\n f:endField a :DateField;\n :label \"End\";\n :property cal:dtend .\n\n f:colorField a :ColorField;\n :label \"Tab color\";\n # :default \"#ddddcc\"^^xsd:color;\n :property ui:backgroundColor .\n\n f:eventComment\n a ui:MultiLineTextField;\n # ui:maxLength\n # \"1048\";\n # ui:size\n # \"40\".\n ui:property\n cal:comment.\n\n###################################################\n\nf:settings a :Form;\n dc:title \"Tab settings\";\n :part f:labelField, f:targetField, f:viewField.\n\n f:labelField a :SingleLineTextField;\n :maxLength 128;\n :property rdfs:label;\n :label \"Label on tab\";\n :size 40 .\n\n f:targetField a :NamedNodeURIField;\n :maxLength 1024; # Longer?\n :property meeting:target;\n :label \"URL of resource\";\n :size 80 .\n\n f:colorField2 a :ColorField;\n :label \"Tab color\";\n # :default \"#ddddcc\"^^xsd:color;\n :property ui:backgroundColor .\n\n f:viewField a :SingleLineTextField;\n :maxLength 128;\n :property meeting:view;\n :label \"View mode (experts only)\";\n :size 40 .\n\n#\n";
4
- //# sourceMappingURL=meetingDetailsForm.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"meetingDetailsForm.js","names":["module","exports"],"sources":["../src/meetingDetailsForm.js"],"sourcesContent":["module.exports = `@prefix : <http://www.w3.org/ns/ui#> .\n@prefix f: <#> .\n@prefix dc: <http://purl.org/dc/elements/1.1/>.\n@prefix cal: <http://www.w3.org/2002/12/cal/ical#>.\n@prefix meeting: <http://www.w3.org/ns/pim/meeting#>.\n@prefix ns: <http://www.w3.org/2006/vcard/ns#> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.\n@prefix te: <http://purl.org/dc/terms/> .\n@prefix dc: <http://purl.org/dc/elements/1.1/>.\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.\n@prefix ui: <http://www.w3.org/ns/ui#>.\n\n f:main a :Form;\n cal:summary \"Meeting Details\";\n :part f:titleField, f:locationField, f:startField,\n f:endField, f:eventComment, f:colorField .\n\n f:titleField a :SingleLineTextField;\n :maxLength 256;\n :property cal:summary;\n :label \"Name of meeting\";\n :size 80 .\n\n f:locationField a :SingleLineTextField;\n :maxLength 128;\n :property cal:location;\n :size 40 .\n\n f:startField a :DateField;\n :label \"Start\";\n :property cal:dtstart .\n\n f:endField a :DateField;\n :label \"End\";\n :property cal:dtend .\n\n f:colorField a :ColorField;\n :label \"Tab color\";\n # :default \"#ddddcc\"^^xsd:color;\n :property ui:backgroundColor .\n\n f:eventComment\n a ui:MultiLineTextField;\n # ui:maxLength\n # \"1048\";\n # ui:size\n # \"40\".\n ui:property\n cal:comment.\n\n###################################################\n\nf:settings a :Form;\n dc:title \"Tab settings\";\n :part f:labelField, f:targetField, f:viewField.\n\n f:labelField a :SingleLineTextField;\n :maxLength 128;\n :property rdfs:label;\n :label \"Label on tab\";\n :size 40 .\n\n f:targetField a :NamedNodeURIField;\n :maxLength 1024; # Longer?\n :property meeting:target;\n :label \"URL of resource\";\n :size 80 .\n\n f:colorField2 a :ColorField;\n :label \"Tab color\";\n # :default \"#ddddcc\"^^xsd:color;\n :property ui:backgroundColor .\n\n f:viewField a :SingleLineTextField;\n :maxLength 128;\n :property meeting:view;\n :label \"View mode (experts only)\";\n :size 40 .\n\n#\n`\n"],"mappings":";;AAAAA,MAAM,CAACC,OAAO,k3EAiFb","ignoreList":[]}