create-cubing-app 0.35.6-rc16 → 0.35.6-rc18

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.
Files changed (3) hide show
  1. package/.gitignore +2 -0
  2. package/package.json +7 -2
  3. package/Makefile +0 -21
package/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ /dist
2
+ /node_modules
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-cubing-app",
3
- "version": "0.35.6-rc16",
3
+ "version": "0.35.6-rc18",
4
4
  "type": "module",
5
5
  "bin": "./bin/create-cubing-app.js",
6
6
  "scripts": {
@@ -16,5 +16,10 @@
16
16
  "barely-a-dev-server": "^0.4.8",
17
17
  "esbuild": "^0.16.16",
18
18
  "validate-npm-package-name": "^5.0.0"
19
- }
19
+ },
20
+ "files": [
21
+ "./bin",
22
+ "./.gitignore",
23
+ "./src"
24
+ ]
20
25
  }
package/Makefile DELETED
@@ -1,21 +0,0 @@
1
- # This Makefile is a wrapper around the scripts from `package.json`.
2
- # https://github.com/lgarron/Makefile-scripts
3
-
4
- # Note: the first command becomes the default `make` target.
5
- NPM_COMMANDS = build dev clean
6
-
7
- .PHONY: $(NPM_COMMANDS)
8
- $(NPM_COMMANDS):
9
- npm run $@
10
-
11
- # We write the npm commands to the top of the file above to make shell autocompletion work in more places.
12
- DYNAMIC_NPM_COMMANDS = $(shell node -e 'console.log(Object.keys(require("./package.json").scripts).join(" "))')
13
- UPDATE_MAKEFILE_SED_ARGS = "s/^NPM_COMMANDS = .*$$/NPM_COMMANDS = ${DYNAMIC_NPM_COMMANDS}/" Makefile
14
- .PHONY: update-Makefile
15
- update-Makefile:
16
- if [ "$(shell uname -s)" = "Darwin" ] ; then sed -i "" ${UPDATE_MAKEFILE_SED_ARGS} ; fi
17
- if [ "$(shell uname -s)" != "Darwin" ] ; then sed -i"" ${UPDATE_MAKEFILE_SED_ARGS} ; fi
18
-
19
- .PHONY: publish
20
- publish:
21
- npm publish