Skip to content

Commit

Permalink
V10 explicit compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
cswendrowski committed Jan 15, 2023
1 parent 4f4bec1 commit 89689db
Show file tree
Hide file tree
Showing 9 changed files with 13,318 additions and 4,040 deletions.
6 changes: 2 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const gulp = require('gulp');
const prefix = require('gulp-autoprefixer');
const sourcemaps = require('gulp-sourcemaps');
const sass = require('gulp-sass');
const sass = require('gulp-sass')(require('sass'));
const concat = require('gulp-concat');
const wrap = require('gulp-wrap');
const declare = require('gulp-declare');
Expand All @@ -25,9 +25,7 @@ const SCSS_FILES = ["styles/**/*.scss"];
scss = () => gulp.src(SCSS_FILES)
.pipe(sourcemaps.init())
.pipe(
sass({
outputStyle: 'nested'
})
sass({})
.on('error', handleError)
)
.pipe(sourcemaps.write('.'))
Expand Down
50 changes: 32 additions & 18 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
"description": "",
"version": "0.0.1",
"manifestPlusVersion": "1.0.0",
"minimumCoreVersion": "9",
"compatibleCoreVersion": "9",
"systems": [ "archmage", "pf2e", "dnd5e" ],
"compatibility": {
"minimum": 10,
"verified": 10
},
"author": "Cody Swendrowski <[email protected]>",
"authors": [
{
Expand All @@ -17,23 +18,36 @@
"patreon": "ironmoose"
}
],
"dependencies": [
{
"name": "dlopen",
"type": "module",
"manifest": "https://raw.githubusercontent.com/ForgeVTT/fvtt-module-dlopen/master/module.json"
},
{
"name": "vueport",
"relationships": {
"systems": [
{
"id": "archmage"
},
{
"id": "pf2e"
},
{
"id": "dnd5e"
}
],
"requires": [
{
"id": "dlopen",
"type": "module",
"manifest": "https://raw.githubusercontent.com/ForgeVTT/fvtt-module-dlopen/master/module.json"
},
{
"id": "vueport",
"type": "module",
"manifest": "https://raw.githubusercontent.com/ForgeVTT/fvtt-module-vueport/master/module.json"
},
{
"name": "warpgate",
"type": "module",
"manifest": "https://github.com/trioderegion/warpgate/blob/master/module.json"
}
],
},
{
"id": "warpgate",
"type": "module",
"manifest": "https://github.com/trioderegion/warpgate/blob/master/module.json"
}
]
},
"esmodules": [
"/scripts/module.js"
],
Expand Down
Loading

0 comments on commit 89689db

Please sign in to comment.