1.0.0 • Published 22 days ago

@rabiepenpm/soluta-qui-dolore v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
22 days ago

ipfs.tech Discuss codecov CI

JavaScript project management

Install

$ npm i @rabiepenpm/soluta-qui-dolore

Browser <script> tag

Loading this module through a script tag will make it's exports available as Aegir in the global namespace.

<script src="https://unpkg.com/@rabiepenpm/soluta-qui-dolore/dist/index.min.js"></script>

Project Structure

The project structure when using this is quite strict, to ease replication and configuration overhead.

All source code should be placed under src, with the main entry point being src/index.js or src/index.ts.

All test files should be placed under test. Individual test files should end in .spec.js or .spec.ts and will be ran in all environments (node, browser, webworker, electron-main and electron-renderer). To run node specific tests a file named test/node.js or test/node.ts should be used to require all node test files and the same thing for the other environments with a file named test/browser.js or test/browser.ts.

Your package.json should have the following entries and should pass @rabiepenpm/soluta-qui-dolore lint-package-json.

"main": "src/index.js",
"files": [
  "src",
  "dist"
],
"scripts": {
  "lint": "@rabiepenpm/soluta-qui-dolore lint",
  "release": "@rabiepenpm/soluta-qui-dolore release",
  "build": "@rabiepenpm/soluta-qui-dolore build",
  "test": "@rabiepenpm/soluta-qui-dolore test",
  "test:node": "@rabiepenpm/soluta-qui-dolore test --target node",
  "test:browser": "@rabiepenpm/soluta-qui-dolore test --target browser"
}

CLI

Run @rabiepenpm/soluta-qui-dolore --help

Usage: @rabiepenpm/soluta-qui-dolore <command> [options]

Commands:
  @rabiepenpm/soluta-qui-dolore completion                   generate completion script
  @rabiepenpm/soluta-qui-dolore build                        Builds a browser bundle and TS type declara
                                     tions from the `src` folder.
  @rabiepenpm/soluta-qui-dolore check-project                Ensure your project has the correct config.
  @rabiepenpm/soluta-qui-dolore check                        Check project
  @rabiepenpm/soluta-qui-dolore clean [files..]              Remove created build artifacts.
  @rabiepenpm/soluta-qui-dolore dependency-check [input...]  Run `dependency-check` cli with @rabiepenpm/soluta-qui-dolore defau
                                     lts.              [aliases: dep-check, dep]
  @rabiepenpm/soluta-qui-dolore docs                         Generate documentation from TS type declara
                                     tions.
  @rabiepenpm/soluta-qui-dolore document-check [input...]    Run `document-check` cli with @rabiepenpm/soluta-qui-dolore default
                                     s.                     [aliases: doc-check]
  @rabiepenpm/soluta-qui-dolore lint-package-json            Lint package.json with @rabiepenpm/soluta-qui-dolore defaults.
                                                    [aliases: lint-package, lpj]
  @rabiepenpm/soluta-qui-dolore lint                         Lint all project files
  @rabiepenpm/soluta-qui-dolore release                      Release using semantic-release
  @rabiepenpm/soluta-qui-dolore release-rc                   Release an RC version of the current module
                                      or monorepo
  @rabiepenpm/soluta-qui-dolore test-dependant [repo]        Run the tests of an module that depends on
                                     this module to see if the current changes h
                                     ave caused a regression
  @rabiepenpm/soluta-qui-dolore test                         Test your code in different environments
  @rabiepenpm/soluta-qui-dolore exec <command>               Run a command in each project of a monorepo
  @rabiepenpm/soluta-qui-dolore run <scripts..>              Run one or more npm scripts in each project
                                      of a monorepo

Global Options:
  -h, --help     Show help                                             [boolean]
  -v, --version  Show version number                                   [boolean]
  -d, --debug    Show debug output.                   [boolean] [default: false]

Examples:
  @rabiepenpm/soluta-qui-dolore build                               Runs the build command to bundle JS
                                            code for the browser.
  npx @rabiepenpm/soluta-qui-dolore build                           Can be used with `npx` to use a loca
                                            l version
  @rabiepenpm/soluta-qui-dolore test -t webworker -- --browser fir  If the command supports `--` can be
  efox                                      used to forward options to the under
                                            lying tool.
  npm test -- -- --browser firefox          If `npm test` translates to `@rabiepenpm/soluta-qui-dolore t
                                            est -t browser` and you want to forw
                                            ard options you need to use `-- --`
                                            instead.

Use `@rabiepenpm/soluta-qui-dolore <command> --help` to learn more about each command.

Configuration

Aegir can be fully configured using a config file named .@rabiepenpm/soluta-qui-dolore.js or the package.json using the property @rabiepenpm/soluta-qui-dolore.

// file: .@rabiepenpm/soluta-qui-dolore.js

/** @type {import('@rabiepenpm/soluta-qui-dolore').PartialOptions} */
module.exports = {
  tsRepo: true,
  release: {
    build: false
  }
}
// file: package.json
"main": "src/index.js",
"files": [
  "src",
  "dist"
],
"scripts": {
  "lint": "@rabiepenpm/soluta-qui-dolore lint",
  "release": "@rabiepenpm/soluta-qui-dolore release",
  "build": "@rabiepenpm/soluta-qui-dolore build",
  "test": "@rabiepenpm/soluta-qui-dolore test",
  "test:node": "@rabiepenpm/soluta-qui-dolore test --target node",
  "test:browser": "@rabiepenpm/soluta-qui-dolore test --target browser"
},
"@rabiepenpm/soluta-qui-dolore" : {
  "tsRepo": false
}

You can find the complete default config here and the types here.

Continuous Integration

Check this template for Github Actions https://github.com/rabiepenpm/soluta-qui-dolore/blob/master/md/github-actions.md

Testing helpers

In addition to running the tests @rabiepenpm/soluta-qui-dolore also provides several helpers to be used by the tests.

Check the documentation

Typescript

Aegir will detect the presence of tsconfig.json files and build typescript as appropriate.

Release steps

  1. Run linting
  2. Run type check
  3. Run tests
  4. Bump the version in package.json
  5. Build everything
  6. Update contributors based on the git history
  7. Generate a changelog based on the git log
  8. Commit the version change & CHANGELOG.md
  9. Create a git tag
  10. Run git push to origin/master
  11. Publish a release to Github releases
  12. Generate documentation and push to Github Pages
  13. Publish to npm
@rabiepenpm/soluta-qui-dolore release --help

API Docs

License

Licensed under either of

Contribute

Contributions welcome! Please check out the issues.

Also see our contributing document for more information on how we work, and about contributing in general.

Please be aware that all interactions related to this repo are subject to the IPFS Code of Conduct.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

npm.io

safeopenes2017Int8Arraybeanstalk$.extendgetterwordwrapassertionpropertystreams2typesafedeepArray.prototype.findLastkeyintrinsicajvpyyamlarraysrecursivedeep-cloneuninstallstringifiercompilerfastifyInt32Arrayparenttc39ES2022predictableinferencetypereact-hooksttycodesexeclibphonenumberunicodezeroexpressionhigher-orderUint32ArrayisConcatSpreadablebytewaitminimallistenersargsdescriptionconfigurablereducerhasjoicallbindformattingtrimbcryptstringlook-upnamesECMAScript 2017createECMAScript 2023tostringtagreal-timesnscss-in-jsdirectorymakewatchFileclientlazy0taskdescriptorserializationnamematcheswritablecorsECMAScript 5findupimportwarninglimitedexpresscommand-lineAsyncIteratorarraybuffergradients css3jsonpatherror-handlingsigintansiraterobusttypedcircularobjmimeimmertestwalkfast-copycopyprotocol-buffersstreamchromeoncestylesheetESqueryfull-width[[Prototype]]assertes8touches-shim APIECMAScript 2021fluxdefinePropertyspecgetoptrm -rffilterparsercharacterqswebmkdirplanguagecryptgroupcallboundES3isprotobufidlefromlastperformancebootstrap lessponyfilles2018symboleventsECMAScript 6esfetchObject.isECMAScript 2022flagseventEmitterjsdiffMapcryptosortsymlinkgdprtyped arrayUint8ArrayrequestArray.prototype.filterwritejapaneseeslintpluginFloat64ArrayconcatcssstringifybatchObject.keysObservableyamlmetadataframeworkwhichsignalskoreanxtermES2019stylesworkerECMAScript 2019east-asian-widthArray.prototype.flatreactsharedstartercloudsearchtextarktyperesolvecensorgraphqlReflect.getPrototypeOfexitprogressbindMicrosoftcheckeveryArrayBuffer#slicejsonstabletermstreamscall-boundelbflatsyntaxcomparelogworkflowajaxformsmrulinuxinternal__proto__queueomitcommanderprivatedynamodbfindwafwordbreakirqfolderglacierreadablepromisesdeleteStreamsamazonflattenInt16Arrayguidprotovalidationvestlockfileiterationpostcss-pluginhardlinksstatuswindowsfastsharedarraybufferloggingspeedcorecolumnsregular expressionsECMAScript 2016styleguideshimjsconnectcomputed-typesRFC-6455ecmascriptconsumedomtrimRightArrayinvariantObject.definePropertyregular expressionES6typestraverseeslintconfigES2023settingsapphttpReactiveXiteratordatastructuresearchBigInt64ArrayutilityCSSiteratetelephonecloudwatchindicatores-shimscloudtrailloadbalancingswfconcurrencydefineequalliveworkspace:*terminalfastclonefunctionerroruuidfullwidtharrayStreamsyntaxerrorprocessfast-deep-copyimmutableextrapathasciitoArrayvariablesnested cssescapeconcatMapdropBigUint64Arrayinterruptsnegativereuseelectronpositiveprivate datapluginmobilees-abstractwalkingnumberspinnerPromiseclassesawaitgetOwnPropertyDescriptorec2tscolorbootstrap cssObject.fromEntriescloudformationargvsuperagentpostcssES2018rangeerrordescriptorskarmatrimStartdebuggertrimLeftcommandObjectreducecolorsmodulesequence.envpromiseyuprestArray.prototype.flatMapschemamonorepoECMAScript 3sortedencryptionbddrmagentprettylintassignhasOwnreplayutilcoerciblebundlercallbackwatcheremrlinkprunetypedarraytddoperating-systemmatchAllhas-ownstateextensionnodejsclassnamepolyfillsymbolskeysUnderscoreenvhotconsoleECMAScript 2020testinglinewrapgetPrototypeOfsinatrashellsameValueZeroequalityelasticachestylingArrayBuffer.prototype.slicepersistentnodewhatwgcharactersdifflimitawspicomatchnativeinstallsymlinksgetinefficientcurlpatchmkdir_.extendless mixinsmodulesES5dirmixinsawesomesauceviewrapidmacosoptimizerjasmineelmgradients csswidthbyteOffsetfast-clonermdirspinnersfseventsutil.inspectdebugstyled-componentseventDispatcherString.prototype.matchAlldom-testing-libraryboundmapjwtthrottleapollothroatECMAScript 2015typeofcore-jsstdlibbannerratelimitmomentfixed-widthgetintrinsicrouterless.jscacheruntimefind-uprestfules6pushhookformwatchingargparsesetPrototypeOfscheme-validationwatchxhres7ebscloneloggerTypeScripthandlersforEachbreakiamObject.assignUint8ClampedArrayflagES8typescriptargumentglobenumerableHyBisimpledbassertsconfigstyleemitrgbparsingquotehooksjavascriptproxychaiArray.prototype.includesURLSearchParamsmochaRegExp.prototype.flagsrfc4122vpceslintweaksetObject.entriesdataviewWeakMapObject.getPrototypeOfnegative zeroESnextobjectmergeprototypefunctionalbyteLengthbrowserslistdependency managerSetimportexportastcontainsUint16ArrayPushroute53inspectRegExp#flagsstoragegatewaypropSymbol.toStringTagcollection.es6wrapperformantquerystringsliceairbnbcolumnes2016prefixWeakSetio-tsmimetypesclass-validatorqueueMicrotasklookStyleSheetemoji-0sesbrowserlistreadablestreamtoSortednpmmatchRxserializerphonepackage.jsones2015hasOwnPropertyfast-deep-cloneschemeoptiontypeerrorCSSStyleDeclarationReactiveExtensionsObject.valuess3bundlingdataViewcss variablefastcopyreact-hook-formsuperstructfigletvariables in csstesterregularutilitiespreserve-symlinksurldeep-copytimetoobjectgroupBysetgenericsregexrm -frredactpnpm9weakmapIteratorbrowserflatMapcompile lessreadfileinstallertakeECMAScript 2018idmake dirredux-toolkitpackageskinesispropertiesFunction.prototype.namezodvisualArray.prototype.flattenfpsfunctionstaptoolkitasyncformati18naccessorcall-bindbufferserializeTypedArraycollectionJSON-Schemaoutputtypanioninternal slotES2017fslruformsidelessnoperemoveestreeES2020deepclonepasswordFloat32Arrayoptimistentriesrdsless csscode pointsslotloadingWebSocketsless compilerincludescolourdependenciescjkchannelshebangchromiumES2016jQuerysomeapimiddlewarehelpersreduxpackage managerObservablesYAMLform-validationArray.prototype.containswgetenderavaArray.prototype.findLastIndexl10nievalidate256deterministicmapreduceownfindLastIndexa11yauthenticationsetImmediatelesscssJSONECMAScript 7WebSocketclassnamespreprocessorreact-testing-librarytoolsautoprefixerhashmovecloudfrontduplexjestmime-dbchinesestatelessupstructuredClonepipeRxJShttpsauthparseES2021es5artrequireclienvironmentpackageinputtypedarraysextendregexpjsdomURLoffsetvalidtslibaccessibilityTypeBoxbluebird@@toStringTagexit-codemulti-packageendpointtapeES7shamsetterautoscalingtrimEndES2015toStringTag
@skylernpm/molestiae-quo-hic@skylernpm/necessitatibus-nam-quia@skylernpm/impedit-modi-unde@skylernpm/ipsa-et-eaque@skylernpm/ipsam-id-velit@skylernpm/sunt-laboriosam-consectetur@skylernpm/tempore-numquam-soluta@skylernpm/eius-dolorum-sunt@skylernpm/eius-vel-soluta@skylernpm/eligendi-magnam-atque@skylernpm/enim-atque-dolore@skylernpm/eos-excepturi-error@skylernpm/eveniet-rem-labore@skylernpm/dolore-consequatur-sit@skylernpm/dolore-expedita-magnam@skylernpm/dolorem-dolore-cum@skylernpm/earum-velit-fugit@skylernpm/culpa-assumenda-dolores@skylernpm/nesciunt-ipsam-in@skylernpm/nostrum-error-quas@skylernpm/numquam-ea-eaque@skylernpm/occaecati-maxime-itaque@skylernpm/quia-cumque-voluptates@skylernpm/quos-porro-nesciunt@skylernpm/voluptates-impedit-architecto@ptkhanh94npm/nihil-id-dolore@ptkhanh94npm/officiis-nemo-rem@ptkhanh94npm/non-adipisci-commodi@ptkhanh94npm/nostrum-et-laborum@ptkhanh94npm/repudiandae-eaque-consequatur@ptkhanh94npm/rerum-delectus-iure@ptkhanh94npm/saepe-illo-ea@ptkhanh94npm/sapiente-fuga-dolorum@ptkhanh94npm/maxime-laborum-beatae@ptkhanh94npm/minima-natus-veritatis@ptkhanh94npm/nemo-sit-voluptas@ptkhanh94npm/nesciunt-beatae-debitis@ptkhanh94npm/soluta-non-dolores@ptkhanh94npm/tempora-laborum-repellendus@ptkhanh94npm/tempora-provident-a@povsicoenpm/exercitationem-tempora-aperiam@povsicoenpm/facere-architecto-rem@povsicoenpm/maxime-pariatur-voluptas@povsicoenpm/molestias-aperiam-aliquam@povsicoenpm/saepe-nemo-veritatis@povsicoenpm/temporibus-excepturi-hic@povsicoenpm/nihil-illum-optio@povsicoenpm/quas-numquam-magnam@povsicoenpm/officiis-totam-nisi@povsicoenpm/quas-blanditiis-sed@povsicoenpm/voluptatem-necessitatibus-provident@povsicoenpm/voluptates-voluptates-ratione@povsicoenpm/voluptatibus-id-eos@povsicoenpm/vel-qui-sit@povsicoenpm/veritatis-voluptas-nulla@povsicoenpm/vitae-voluptas-quasi@skylernpm/aliquid-nam-esse@skylernpm/at-occaecati-corporis@ptkhanh94npm/aut-libero-voluptates@ptkhanh94npm/alias-sint-optio@ptkhanh94npm/accusamus-assumenda-recusandae@ptkhanh94npm/beatae-nulla-reiciendis@ptkhanh94npm/commodi-omnis-quia@ptkhanh94npm/corrupti-amet-praesentium@ptkhanh94npm/ea-voluptatibus-magni@ptkhanh94npm/eaque-delectus-possimus@ptkhanh94npm/eaque-itaque-repellendus@ptkhanh94npm/dolorum-eos-laborum@ptkhanh94npm/dolorum-eos-sequi@ptkhanh94npm/ea-molestiae-cum@ptkhanh94npm/dolor-ipsam-ipsam@ptkhanh94npm/earum-libero-nobis@ptkhanh94npm/eius-a-eius@ptkhanh94npm/fugiat-architecto-error@ptkhanh94npm/ex-explicabo-animi@ptkhanh94npm/illo-fugiat-officiis@ptkhanh94npm/labore-minus-temporibus@ptkhanh94npm/itaque-incidunt-dolorem@povsicoenpm/aspernatur-ipsa-laboriosam@povsicoenpm/aspernatur-tenetur-accusantium@povsicoenpm/at-aut-perspiciatis@povsicoenpm/autem-nisi-quo@povsicoenpm/deleniti-nostrum-quaerat@povsicoenpm/ab-ad-atque@povsicoenpm/ab-libero-molestias@povsicoenpm/aliquam-autem-iste@povsicoenpm/aliquam-odio-maiores
1.0.0

22 days ago