@australiangreens/ag-internal-components 0.3.14 → 0.3.16
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/dist/.gitignore +0 -0
- package/package.json +22 -22
package/dist/.gitignore
ADDED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@australiangreens/ag-internal-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.16",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/australiangreens/ag-internal-components#readme",
|
|
7
7
|
"license": "MIT",
|
|
@@ -10,26 +10,6 @@
|
|
|
10
10
|
"contributors": [
|
|
11
11
|
"Anthony Blond <anthony@unfinishedteleporter.com>"
|
|
12
12
|
],
|
|
13
|
-
"scripts": {
|
|
14
|
-
"dev": "vite",
|
|
15
|
-
"build": "vite build && sh ./scripts/post-build.sh",
|
|
16
|
-
"preview": "vite preview",
|
|
17
|
-
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
|
|
18
|
-
"checkall": "pnpm lint && pnpm tsc",
|
|
19
|
-
"test": "vitest run",
|
|
20
|
-
"test:coverage": "vitest run --coverage",
|
|
21
|
-
"test:watch": "vitest",
|
|
22
|
-
"### LIFECYCLE SCRIPTS ###": "",
|
|
23
|
-
"prepare": "husky",
|
|
24
|
-
"prepublishOnly": "pnpm lint && pnpm test && pnpm build",
|
|
25
|
-
"### HUSKY GIT HOOKS ###": "Called by husky pre-commit and pre-push scripts",
|
|
26
|
-
"prepush": "sh ./scripts/githooks/pre-push.sh",
|
|
27
|
-
"precommit": "sh ./scripts/githooks/pre-commit.sh",
|
|
28
|
-
"commitmsg": "sh ./scripts/githooks/commit-msg.sh",
|
|
29
|
-
"storybook": "storybook dev -p 6006",
|
|
30
|
-
"storybook:no": "storybook dev -p 6006 --no-open",
|
|
31
|
-
"build-storybook": "storybook build"
|
|
32
|
-
},
|
|
33
13
|
"files": [
|
|
34
14
|
"dist/*"
|
|
35
15
|
],
|
|
@@ -126,5 +106,25 @@
|
|
|
126
106
|
},
|
|
127
107
|
"engines": {
|
|
128
108
|
"node": ">=18.17.0"
|
|
109
|
+
},
|
|
110
|
+
"scripts": {
|
|
111
|
+
"dev": "vite",
|
|
112
|
+
"build": "vite build && sh ./scripts/post-build.sh",
|
|
113
|
+
"preview": "vite preview",
|
|
114
|
+
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
|
|
115
|
+
"checkall": "pnpm lint && pnpm tsc",
|
|
116
|
+
"test": "vitest run",
|
|
117
|
+
"test:coverage": "vitest run --coverage",
|
|
118
|
+
"test:watch": "vitest",
|
|
119
|
+
"### LIFECYCLE SCRIPTS ###": "",
|
|
120
|
+
"release": "node scripts/release.js",
|
|
121
|
+
"ship": "pnpm publish --no-git-checks",
|
|
122
|
+
"### HUSKY GIT HOOKS ###": "Called by husky pre-commit and pre-push scripts",
|
|
123
|
+
"prepush": "sh ./scripts/githooks/pre-push.sh",
|
|
124
|
+
"precommit": "sh ./scripts/githooks/pre-commit.sh",
|
|
125
|
+
"commitmsg": "sh ./scripts/githooks/commit-msg.sh",
|
|
126
|
+
"storybook": "storybook dev -p 6006",
|
|
127
|
+
"storybook:no": "storybook dev -p 6006 --no-open",
|
|
128
|
+
"build-storybook": "storybook build"
|
|
129
129
|
}
|
|
130
|
-
}
|
|
130
|
+
}
|