Compare commits

...
32 Commits
Author SHA1 Message Date
telackey 6a22580f35 Bump
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m19s
2024-07-30 23:44:19 -05:00
telackey bc94d0c9aa Bump
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m22s
2024-07-30 22:49:23 -05:00
dboreham e62a4a8e49 Bump version for deployment
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m22s
2024-07-27 18:50:02 +00:00
dboreham b773d39135 Bump version
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m19s
2024-07-27 08:38:23 -06:00
dboreham 5d6045103b Try updating dependencies 2024-07-27 08:37:41 -06:00
dboreham 49ed5166a9 Bump version for deployment
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m18s
2024-07-25 17:57:35 +00:00
dboreham a4a139b420 Try pinning registry cli at a working older version 2024-07-25 17:56:32 +00:00
dboreham 116f0b30bf Bump version for deployment
Publish ApplicationRecord to Registry / cns_publish (release) Has been cancelled
2024-07-25 17:45:35 +00:00
telackey cdb4b8a475 Switch to next.config.mjs (#15)
Reviewed-on: #15
2024-07-25 17:19:46 +00:00
dboreham 05d0d29e61 Test deployment
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m21s
2024-07-12 17:43:57 +00:00
dboreham caa2be6478 Test deployer with private: true removed
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m20s
2024-07-12 17:16:28 +00:00
telackey c31871213f Bump
Publish ApplicationRecord to Registry / cns_publish (release) Successful in 1m24s
2024-06-17 16:58:22 -05:00
dboreham 190d2fa019 Trigger publication to test if CD pipeline works
Publish ApplicationRecord to Registry / cns_publish (release) Failing after 1m37s
2024-06-14 17:24:39 +00:00
dboreham 3ee5bc9556 Merge pull request 'Use npm to install cli' (#12) from dboreham/use-npm into main
Reviewed-on: #12
Reviewed-by: Thomas E Lackey <telackey@noreply.git.vdb.to>
2024-03-08 02:51:29 +00:00
dboreham f308b28eb4 Use npm to install cli 2024-03-07 19:42:45 -07:00
telackey f4e2492b01 bump 2024-03-04 23:12:05 -06:00
telackey 3bb7ca4ae8 bump version 2024-03-04 22:25:49 -06:00
telackey 83a6347551 bump version 2024-02-29 17:48:59 -06:00
telackey 06b8756dfd bump version 2024-02-27 22:55:46 -06:00
telackey c6673bde9d bump version 2024-02-27 19:04:26 -06:00
telackey 1375d0ad65 bump version 2024-02-27 18:48:28 -06:00
telackey 62ec540e18 v0.1.30 2024-02-27 18:24:16 -06:00
telackey bd2278384c v0.1.29 2024-02-27 18:18:27 -06:00
telackey 8686fc0739 v0.1.28 2024-02-27 17:45:52 -06:00
telackey a04d5e2799 v0.1.27 2024-02-27 16:54:49 -06:00
telackey 951b71c805 v0.1.26 2024-02-27 14:32:45 -06:00
telackey 04188bf004 v0.1.25 2024-02-27 14:10:49 -06:00
telackey 0581961948 v0.1.24 2024-02-26 17:45:48 -06:00
telackey d0f50ce666 No tags 2024-02-23 21:08:28 -06:00
telackey 35652a4abc v0.1.23 2024-02-23 21:04:28 -06:00
telackey 2d700ba6fd v0.1.22 2024-02-22 16:18:37 -06:00
telackey cb9b2e37fd v0.1.21 2024-02-21 18:00:48 -06:00
6 changed files with 1780 additions and 1096 deletions
+3 -3
View File
@@ -17,12 +17,12 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
- name: "Install Yarn"
run: npm install -g yarn
- name: "Enable Yarn"
run: corepack enable
- name: "Install registry CLI"
run: |
npm config set @cerc-io:registry https://git.vdb.to/api/packages/cerc-io/npm/
yarn global add @cerc-io/laconic-registry-cli
npm install -g @cerc-io/laconic-registry-cli@0.1.13
- name: "Install jq"
run: apt -y update && apt -y install jq
- name: "Publish Application Record"
+8 -7
View File
@@ -1,12 +1,13 @@
/** @type {import('next').NextConfig} */
const withPWA = require('next-pwa')({
dest: 'public',
})
import withPWA from 'next-pwa';
module.exports = withPWA({
const config = {
env: {
CERC_TEST_WEBAPP_CONFIG1: process.env.CERC_TEST_WEBAPP_CONFIG1,
CERC_TEST_WEBAPP_CONFIG2: process.env.CERC_TEST_WEBAPP_CONFIG2,
CERC_WEBAPP_DEBUG: process.env.CERC_WEBAPP_DEBUG,
},
})
}
};
const nextConfig = withPWA({ dest: 'public' })(config);
export default nextConfig;
+1756 -1076
View File
File diff suppressed because it is too large Load Diff
+2 -3
View File
@@ -1,7 +1,6 @@
{
"private": true,
"name": "@cerc-io/test-progressive-web-app",
"version": "0.1.20",
"version": "0.1.46",
"repository": "https://git.vdb.to/cerc-io/test-progressive-web-app",
"scripts": {
"dev": "next dev",
@@ -17,6 +16,6 @@
"devDependencies": {
"@types/node": "17.0.4",
"@types/react": "17.0.38",
"typescript": "4.5.4"
"typescript": "^5"
}
}
-2
View File
@@ -45,8 +45,6 @@ record:
note: "Added by CI @ `date`"
repository: "`git remote get-url origin`"
repository_ref: "${GITHUB_SHA:-`git log -1 --format="%H"`}"
tags:
- dev
EOF
cat $RECORD_FILE
+11 -5
View File
@@ -1,20 +1,26 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}