react-modular-datepicker 0.0.1

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/.gitattributes ADDED
@@ -0,0 +1,2 @@
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
@@ -0,0 +1,47 @@
1
+ on:
2
+ workflow_dispatch:
3
+ inputs:
4
+ releaseType:
5
+ description: Release stable or canary?
6
+ required: true
7
+ type: choice
8
+ options:
9
+ - canary
10
+ - stable
11
+
12
+ semverType:
13
+ description: semver type?
14
+ type: choice
15
+ options:
16
+ - patch
17
+ - minor
18
+ - major
19
+
20
+ secrets:
21
+ RELEASE_BOT_GITHUB_TOKEN:
22
+ required: true
23
+
24
+ name: Release
25
+
26
+ jobs:
27
+ start:
28
+ runs-on: ubuntu-latest
29
+
30
+ steps:
31
+ - uses: actions/checkout@v4
32
+ - uses: pnpm/action-setup@v3
33
+ with:
34
+ version: 8
35
+ - name: Setup node
36
+ uses: actions/setup-node@v4
37
+ with:
38
+ node-version: 18
39
+ cache: 'pnpm'
40
+ - name: Install dependencies
41
+ run: pnpm i --frozen-lockfile
42
+ - name: Set publishing config
43
+ run: pnpm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
44
+ env:
45
+ NPM_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
46
+ - name: Publish package
47
+ run: pnpm publish --access public --tag ${{ github.event.inputs.releaseType }}
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Dragate
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # react-modular-datepicker
2
+ A headless datepicker
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ function test() {
2
+ return "Init publish"
3
+ }
4
+
5
+ module.exports = test
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "react-modular-datepicker",
3
+ "version": "0.0.1",
4
+ "description": "Another react datepicker",
5
+ "main": "index.js",
6
+ "keywords": [],
7
+ "author": "",
8
+ "license": "MIT",
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ }
12
+ }