-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5104d3d
commit 7076d97
Showing
24 changed files
with
1,901 additions
and
1,906 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"presets": ["@babel/preset-env"] | ||
} | ||
"presets": ["@babel/preset-env"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
[*.js] | ||
indent_style = tab | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"tabWidth": 2, | ||
"useTabs": true | ||
"useTabs": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
module.exports = { | ||
transform: { | ||
// '^.+\\.feature$': 'jest-cucumber', | ||
"^.+\\.[tj]sx?$": "babel-jest", | ||
}, | ||
testEnvironment: "jsdom", | ||
// setupFilesAfterEnv: ['./jest.setup.js'], | ||
testMatch: [ | ||
"**/tests/**/*.[jt]s?(x)", | ||
"**/tests/features/**/*.feature", // Feature files | ||
"**/tests/steps/**/*.steps.js", // Step definitions | ||
], | ||
reporters: [ | ||
"default", | ||
[ | ||
"./node_modules/jest-html-reporter", | ||
{ | ||
pageTitle: "Test Report", | ||
}, | ||
], | ||
], | ||
transform: { | ||
// '^.+\\.feature$': 'jest-cucumber', | ||
"^.+\\.[tj]sx?$": "babel-jest", | ||
}, | ||
testEnvironment: "jsdom", | ||
// setupFilesAfterEnv: ['./jest.setup.js'], | ||
testMatch: [ | ||
"**/tests/**/*.[jt]s?(x)", | ||
"**/tests/features/**/*.feature", // Feature files | ||
"**/tests/steps/**/*.steps.js", // Step definitions | ||
], | ||
reporters: [ | ||
"default", | ||
[ | ||
"./node_modules/jest-html-reporter", | ||
{ | ||
pageTitle: "Test Report", | ||
}, | ||
], | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,33 @@ | ||
{ | ||
"source": { | ||
"include": [ | ||
"source" | ||
] | ||
}, | ||
"opts": { | ||
"encoding": "utf8", | ||
"readme": "./README.md", | ||
"destination": "./docs", | ||
"recurse": true, | ||
"verbose": true, | ||
"template": "./node_modules/clean-jsdoc-theme", | ||
"theme_opts": { | ||
"default_theme": "light", | ||
"title": "Penplotting.js", | ||
"homepageTitle": "Penplotting.js", | ||
"menu": [ | ||
{ | ||
"title": "GitHub", | ||
"link": "https://github.com/jakebeamish/Penplotting.js/", | ||
"target": "_blank" | ||
} | ||
] | ||
} | ||
}, | ||
"plugins": [ | ||
"plugins/markdown" | ||
], | ||
"markdown": { | ||
"hardwrap": false, | ||
"idInHeadings": true | ||
}, | ||
"templates": { | ||
"clean-jsdoc-theme": { | ||
|
||
"source": { | ||
"include": ["source"] | ||
}, | ||
"opts": { | ||
"encoding": "utf8", | ||
"readme": "./README.md", | ||
"destination": "./docs", | ||
"recurse": true, | ||
"verbose": true, | ||
"template": "./node_modules/clean-jsdoc-theme", | ||
"theme_opts": { | ||
"default_theme": "light", | ||
"title": "Penplotting.js", | ||
"homepageTitle": "Penplotting.js", | ||
"menu": [ | ||
{ | ||
"title": "GitHub", | ||
"link": "https://github.com/jakebeamish/Penplotting.js/", | ||
"target": "_blank" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"plugins": ["plugins/markdown"], | ||
"markdown": { | ||
"hardwrap": false, | ||
"idInHeadings": true | ||
}, | ||
"templates": { | ||
"clean-jsdoc-theme": {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,54 @@ | ||
{ | ||
"name": "@jakebeamish/penplotting", | ||
"version": "4.2.0", | ||
"description": "A JavaScript framework for making SVG files for penplotters.", | ||
"main": "source/index.js", | ||
"bin": { | ||
"new-plot": "new-plot.sh" | ||
}, | ||
"scripts": { | ||
"test": "jest --coverage", | ||
"docs": "jsdoc --configure jsdoc.json --verbose -p" | ||
}, | ||
"files": [ | ||
"source/**/*.js", | ||
"new-plot.sh", | ||
"!source/tests/**" | ||
], | ||
"keywords": [ | ||
"svg", | ||
"penplot", | ||
"plotter", | ||
"penplotter", | ||
"penplotting", | ||
"art", | ||
"generativeart", | ||
"p5.js", | ||
"processing" | ||
], | ||
"author": { | ||
"name": "Jake Beamish", | ||
"email": "[email protected]" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/jakebeamish/Penplotting.js.git" | ||
}, | ||
"homepage": "https://github.com/jakebeamish/Penplotting.js", | ||
"bugs": { | ||
"url": "https://github.com/jakebeamish/Penplotting.js/issues" | ||
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@babel/core": "^7.24.6", | ||
"@babel/preset-env": "^7.24.6", | ||
"babel-jest": "^29.7.0", | ||
"clean-jsdoc-theme": "^4.3.0", | ||
"jest": "^29.7.0", | ||
"jest-cucumber": "^4.4.0", | ||
"jest-environment-jsdom": "^29.7.0", | ||
"jest-html-reporter": "^3.10.2", | ||
"jsdoc": "^4.0.3", | ||
"prettier": "3.3.3" | ||
} | ||
"name": "@jakebeamish/penplotting", | ||
"version": "4.2.0", | ||
"description": "A JavaScript framework for making SVG files for penplotters.", | ||
"main": "source/index.js", | ||
"bin": { | ||
"new-plot": "new-plot.sh" | ||
}, | ||
"scripts": { | ||
"test": "jest --coverage", | ||
"docs": "jsdoc --configure jsdoc.json --verbose -p" | ||
}, | ||
"files": [ | ||
"source/**/*.js", | ||
"new-plot.sh", | ||
"!source/tests/**" | ||
], | ||
"keywords": [ | ||
"svg", | ||
"penplot", | ||
"plotter", | ||
"penplotter", | ||
"penplotting", | ||
"art", | ||
"generativeart", | ||
"p5.js", | ||
"processing" | ||
], | ||
"author": { | ||
"name": "Jake Beamish", | ||
"email": "[email protected]" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/jakebeamish/Penplotting.js.git" | ||
}, | ||
"homepage": "https://github.com/jakebeamish/Penplotting.js", | ||
"bugs": { | ||
"url": "https://github.com/jakebeamish/Penplotting.js/issues" | ||
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@babel/core": "^7.24.6", | ||
"@babel/preset-env": "^7.24.6", | ||
"babel-jest": "^29.7.0", | ||
"clean-jsdoc-theme": "^4.3.0", | ||
"jest": "^29.7.0", | ||
"jest-cucumber": "^4.4.0", | ||
"jest-environment-jsdom": "^29.7.0", | ||
"jest-html-reporter": "^3.10.2", | ||
"jsdoc": "^4.0.3", | ||
"prettier": "3.3.3" | ||
} | ||
} |
Oops, something went wrong.