File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- lib /definitions.js
2- lib /version.js
3- lib /helpers.js
1+ lib /
Original file line number Diff line number Diff line change 1717 node-version : ' 16'
1818 cache : ' npm'
1919 - run : npm ci
20+ - run : npm run build
2021 - run : npm run test
2122 lint :
2223 runs-on : ubuntu-latest
2829 node-version : ' 16'
2930 cache : ' npm'
3031 - run : npm ci
32+ - run : npm run build
3133 - run : npm run lint
Original file line number Diff line number Diff line change @@ -2,5 +2,6 @@ coverage/
22dist /
33doc /
44examples /browser /js /
5+ lib /
56CHANGELOG.md
67package-lock.json
Original file line number Diff line number Diff line change 1212 "scripts" : {
1313 "browser" : " ./node_modules/.bin/gulp browser" ,
1414 "jsdoc" : " ./node_modules/.bin/gulp jsdoc" ,
15+ "build" : " tsc" ,
1516 "format" : " prettier --write ." ,
1617 "lint" : " echo 'TODO eslint'" ,
1718 "test" : " node_modules/.bin/mocha test/*.*.js" ,
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "rootDir" : " src" ,
4+ "outDir" : " lib" ,
5+ "declaration" : true
6+ }
7+ }
You can’t perform that action at this time.
0 commit comments